-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
50 lines (47 loc) · 1.81 KB
/
pom.xml
File metadata and controls
50 lines (47 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.derekabdine</groupId>
<artifactId>kibana-jetty</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>kibana-jetty Maven Webapp</name>
<url>https://github.com/dabdine/kibana-jetty</url>
<properties>
<kibana.version>3.0.0milestone4</kibana.version>
</properties>
<build>
<finalName>kibana</finalName>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>maven-download-plugin</artifactId>
<version>1.1.0</version>
<executions>
<execution>
<id>download-unpack-kibana</id>
<phase>process-sources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>http://download.elasticsearch.org/kibana/kibana/kibana-${kibana.version}.zip</url>
<unpack>true</unpack>
<outputDirectory>${project.build.directory}/${project.build.finalName}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<configuration>
<container>
<containerId>jetty7x</containerId>
<type>embedded</type>
</container>
</configuration>
</plugin>
</plugins>
</build>
</project>