[1539] | 1 | <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/xsd/maven-4.0.0.xsd"> |
---|
| 2 | <modelVersion>4.0.0</modelVersion> |
---|
| 3 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 4 | <artifactId>autoquest-jfcmonitor</artifactId> |
---|
[2120] | 5 | <version>0.2.2-SNAPSHOT</version> |
---|
[1539] | 6 | <name>autoquest-jfcmonitor</name> |
---|
| 7 | <licenses> |
---|
| 8 | <license> |
---|
| 9 | <name>The Apache Software License, Version 2.0</name> |
---|
| 10 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
---|
| 11 | </license> |
---|
| 12 | </licenses> |
---|
| 13 | <scm> |
---|
[2120] | 14 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url> |
---|
| 15 | <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection> |
---|
[1539] | 16 | </scm> |
---|
| 17 | <distributionManagement> |
---|
| 18 | <snapshotRepository> |
---|
| 19 | <id>autoquest-snapshots</id> |
---|
| 20 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url> |
---|
| 21 | </snapshotRepository> |
---|
| 22 | <repository> |
---|
| 23 | <id>autoquest</id> |
---|
| 24 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url> |
---|
| 25 | </repository> |
---|
| 26 | </distributionManagement> |
---|
| 27 | <dependencies> |
---|
| 28 | <dependency> |
---|
| 29 | <groupId>de.ugoe.cs</groupId> |
---|
| 30 | <artifactId>java-utils</artifactId> |
---|
[1940] | 31 | <version>${project.version}</version> |
---|
[1539] | 32 | </dependency> |
---|
| 33 | </dependencies> |
---|
| 34 | <build> |
---|
| 35 | <plugins> |
---|
| 36 | <plugin> |
---|
| 37 | <artifactId>maven-compiler-plugin</artifactId> |
---|
| 38 | <version>2.3.2</version> |
---|
| 39 | <configuration> |
---|
[1548] | 40 | <source>1.7</source> |
---|
| 41 | <target>1.7</target> |
---|
[1539] | 42 | </configuration> |
---|
| 43 | </plugin> |
---|
| 44 | <plugin> |
---|
| 45 | <groupId>org.apache.maven.plugins</groupId> |
---|
| 46 | <artifactId>maven-jar-plugin</artifactId> |
---|
| 47 | <configuration> |
---|
| 48 | <archive> |
---|
| 49 | <manifest> |
---|
| 50 | <addClasspath>true</addClasspath> |
---|
| 51 | <classpathPrefix>lib/</classpathPrefix> |
---|
| 52 | <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass> |
---|
| 53 | </manifest> |
---|
| 54 | </archive> |
---|
| 55 | </configuration> |
---|
| 56 | </plugin> |
---|
| 57 | <plugin> |
---|
| 58 | <artifactId>maven-assembly-plugin</artifactId> |
---|
| 59 | <version>2.2-beta-2</version> |
---|
| 60 | <configuration> |
---|
| 61 | <descriptors> |
---|
| 62 | <descriptor>src/main/assembly/bin.xml</descriptor> |
---|
| 63 | </descriptors> |
---|
| 64 | </configuration> |
---|
| 65 | <executions> |
---|
| 66 | <execution> |
---|
| 67 | <id>make-assembly</id> |
---|
| 68 | <phase>package</phase> |
---|
| 69 | <goals> |
---|
| 70 | <goal>single</goal> |
---|
| 71 | </goals> |
---|
| 72 | </execution> |
---|
| 73 | </executions> |
---|
| 74 | </plugin> |
---|
| 75 | </plugins> |
---|
| 76 | </build> |
---|
[822] | 77 | </project> |
---|