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-httpmonitor</artifactId> |
---|
5 | <version>0.1.2-SNAPSHOT</version> |
---|
6 | <name>autoquest-httpmonitor</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 | <packaging>jar</packaging> |
---|
14 | <scm> |
---|
15 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url> |
---|
16 | <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection> |
---|
17 | </scm> |
---|
18 | <distributionManagement> |
---|
19 | <snapshotRepository> |
---|
20 | <id>autoquest-snapshots</id> |
---|
21 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url> |
---|
22 | </snapshotRepository> |
---|
23 | <repository> |
---|
24 | <id>autoquest</id> |
---|
25 | <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url> |
---|
26 | </repository> |
---|
27 | </distributionManagement> |
---|
28 | <dependencies> |
---|
29 | <dependency> |
---|
30 | <groupId>de.ugoe.cs</groupId> |
---|
31 | <artifactId>java-utils</artifactId> |
---|
32 | <version>0.1.2-SNAPSHOT</version> |
---|
33 | </dependency> |
---|
34 | <dependency> |
---|
35 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
36 | <artifactId>autoquest-plugin-http</artifactId> |
---|
37 | <version>0.1.2-SNAPSHOT</version> |
---|
38 | </dependency> |
---|
39 | <dependency> |
---|
40 | <groupId>org.eclipse.jetty</groupId> |
---|
41 | <artifactId>jetty-server</artifactId> |
---|
42 | <version>9.1.0.M0</version> |
---|
43 | </dependency> |
---|
44 | <dependency> |
---|
45 | <groupId>org.eclipse.jetty</groupId> |
---|
46 | <artifactId>jetty-servlet</artifactId> |
---|
47 | <version>9.1.0.M0</version> |
---|
48 | </dependency> |
---|
49 | <dependency> |
---|
50 | <groupId>org.eclipse.jetty</groupId> |
---|
51 | <artifactId>jetty-proxy</artifactId> |
---|
52 | <version>9.1.0.M0</version> |
---|
53 | </dependency> |
---|
54 | </dependencies> |
---|
55 | <build> |
---|
56 | <plugins> |
---|
57 | <plugin> |
---|
58 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
---|
59 | <artifactId>maven-jaxb2-plugin</artifactId> |
---|
60 | <version>0.8.2</version> |
---|
61 | <configuration> |
---|
62 | <generatePackage>de.ugoe.cs.autoquest.httpmonitor.exchange</generatePackage> |
---|
63 | </configuration> |
---|
64 | <executions> |
---|
65 | <execution> |
---|
66 | <goals> |
---|
67 | <goal>generate</goal> |
---|
68 | </goals> |
---|
69 | </execution> |
---|
70 | </executions> |
---|
71 | </plugin> |
---|
72 | <plugin> |
---|
73 | <artifactId>maven-compiler-plugin</artifactId> |
---|
74 | <version>2.3.2</version> |
---|
75 | <configuration> |
---|
76 | <source>1.7</source> |
---|
77 | <target>1.7</target> |
---|
78 | </configuration> |
---|
79 | </plugin> |
---|
80 | <plugin> |
---|
81 | <groupId>org.apache.maven.plugins</groupId> |
---|
82 | <artifactId>maven-jar-plugin</artifactId> |
---|
83 | <configuration> |
---|
84 | <archive> |
---|
85 | <manifest> |
---|
86 | <addClasspath>true</addClasspath> |
---|
87 | <classpathPrefix>lib/</classpathPrefix> |
---|
88 | <mainClass>de.ugoe.cs.autoquest.httpmonitor.Runner</mainClass> |
---|
89 | </manifest> |
---|
90 | </archive> |
---|
91 | </configuration> |
---|
92 | </plugin> |
---|
93 | <plugin> |
---|
94 | <artifactId>maven-assembly-plugin</artifactId> |
---|
95 | <version>2.2-beta-2</version> |
---|
96 | <configuration> |
---|
97 | <descriptors> |
---|
98 | <descriptor>src/main/assembly/bin.xml</descriptor> |
---|
99 | </descriptors> |
---|
100 | </configuration> |
---|
101 | <executions> |
---|
102 | <execution> |
---|
103 | <id>make-assembly</id> |
---|
104 | <phase>package</phase> |
---|
105 | <goals> |
---|
106 | <goal>single</goal> |
---|
107 | </goals> |
---|
108 | </execution> |
---|
109 | </executions> |
---|
110 | </plugin> |
---|
111 | </plugins> |
---|
112 | </build> |
---|
113 | </project> |
---|