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