aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-12-11 10:42:20 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2012-12-11 10:42:20 +0100
commit91fbd12e13e16c4b163803e37ac24a0d1629d82d (patch)
treee3da50bab57cda2981c4aac8f8b7ba99e73272ba /pom.xml
parente16e32c653cda7e47a6b9dc8515f187658549921 (diff)
downloadesper-testing-91fbd12e13e16c4b163803e37ac24a0d1629d82d.tar.gz
esper-testing-91fbd12e13e16c4b163803e37ac24a0d1629d82d.tar.bz2
esper-testing-91fbd12e13e16c4b163803e37ac24a0d1629d82d.tar.xz
esper-testing-91fbd12e13e16c4b163803e37ac24a0d1629d82d.zip
o Building a zip file with all the tools in them.
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml60
1 files changed, 55 insertions, 5 deletions
diff --git a/pom.xml b/pom.xml
index 89934ee..7779bda 100755
--- a/pom.xml
+++ b/pom.xml
@@ -3,6 +3,11 @@
<groupId>io.trygvis.esper.testing</groupId>
<artifactId>esper-testing</artifactId>
<version>1.0-SNAPSHOT</version>
+ <properties>
+ <maven.compiler.source>1.7</maven.compiler.source>
+ <maven.compiler.target>1.7</maven.compiler.target>
+ <version.httpcache4>3.4</version.httpcache4>
+ </properties>
<dependencies>
<dependency>
<groupId>com.espertech</groupId>
@@ -87,9 +92,54 @@
<scope>test</scope>
</dependency>
</dependencies>
- <properties>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
- <version.httpcache4>3.4</version.httpcache4>
- </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>appassembler-maven-plugin</artifactId>
+ <version>1.1.1</version>
+ <executions>
+ <execution>
+ <id>wat</id>
+ <goals>
+ <goal>assemble</goal>
+ </goals>
+ <configuration>
+ <programs>
+ <program>
+ <name>nexus-importer</name>
+ <mainClass>io.trygvis.esper.testing.nexus.NexusImporter</mainClass>
+ </program>
+ <program>
+ <name>jenkins-importer</name>
+ <mainClass>io.trygvis.esper.testing.jenkins.JenkinsImporter</mainClass>
+ </program>
+ </programs>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>no.arktekk.unix</groupId>
+ <artifactId>unix-maven-plugin</artifactId>
+ <version>1.0-alpha-6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>package-zip-attached</goal>
+ </goals>
+ <configuration>
+ <contact>Trygve Laugstøl</contact>
+ <contactEmail>trygvis@inamo.no</contactEmail>
+ <assembly>
+ <copyDirectory>
+ <from>target/appassembler</from>
+ </copyDirectory>
+ </assembly>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>