source: trunk/autoquest-httpmonitor/pom.xml @ 1538

Last change on this file since 1538 was 1538, checked in by pharms, 10 years ago
  • preparation for release of 0.1.0
File size: 4.5 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.autoquest</groupId>
8    <artifactId>autoquest-httpmonitor</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoquest-httpmonitor</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <packaging>jar</packaging>
18    <scm>
19        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url>
20        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection>
21    </scm>
22    <distributionManagement>
23        <snapshotRepository>
24            <id>autoquest-snapshots</id>
25            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
26        </snapshotRepository>
27        <repository>
28            <id>autoquest</id>
29            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url>
30        </repository>
31    </distributionManagement>
32    <dependencies>
33        <dependency>
34            <groupId>de.ugoe.cs</groupId>
35            <artifactId>java-utils</artifactId>
36            <version>0.0.1-SNAPSHOT</version>
37        </dependency>
38        <dependency>
39            <groupId>de.ugoe.cs.autoquest</groupId>
40            <artifactId>autoquest-plugin-http</artifactId>
41            <version>0.0.1-SNAPSHOT</version>
42        </dependency>
43        <dependency>
44            <groupId>org.eclipse.jetty</groupId>
45            <artifactId>jetty-server</artifactId>
46            <version>9.1.0.M0</version>
47        </dependency>
48        <dependency>
49            <groupId>org.eclipse.jetty</groupId>
50            <artifactId>jetty-servlet</artifactId>
51            <version>9.1.0.M0</version>
52        </dependency>
53        <dependency>
54            <groupId>org.eclipse.jetty</groupId>
55            <artifactId>jetty-proxy</artifactId>
56            <version>9.1.0.M0</version>
57        </dependency>
58    </dependencies>
59    <build>
60        <plugins>
61            <plugin>
62                <groupId>org.jvnet.jaxb2.maven2</groupId>
63                <artifactId>maven-jaxb2-plugin</artifactId>
64                <version>0.8.2</version>
65                <configuration>
66                    <generatePackage>de.ugoe.cs.autoquest.httpmonitor.exchange</generatePackage>
67                </configuration>
68                <executions>
69                    <execution>
70                        <goals>
71                            <goal>generate</goal>
72                        </goals>
73                    </execution>
74                </executions>
75            </plugin>
76            <plugin>
77                <artifactId>maven-compiler-plugin</artifactId>
78                <version>2.3.2</version>
79                <configuration>
80                    <source>1.7</source>
81                    <target>1.7</target>
82                </configuration>
83            </plugin>
84            <plugin>
85                <groupId>org.apache.maven.plugins</groupId>
86                <artifactId>maven-jar-plugin</artifactId>
87                <configuration>
88                    <archive>
89                        <manifest>
90                            <addClasspath>true</addClasspath>
91                            <classpathPrefix>lib/</classpathPrefix>
92                            <mainClass>de.ugoe.cs.autoquest.httpmonitor.Runner</mainClass>
93                        </manifest>
94                    </archive>
95                </configuration>
96            </plugin>
97            <plugin>
98                <artifactId>maven-assembly-plugin</artifactId>
99                <version>2.2-beta-2</version>
100                <configuration>
101                    <descriptors>
102                        <descriptor>src/main/assembly/bin.xml</descriptor>
103                    </descriptors>
104                </configuration>
105                <executions>
106                    <execution>
107                        <id>make-assembly</id>
108                        <phase>package</phase>
109                        <goals>
110                            <goal>single</goal>
111                        </goals>
112                    </execution>
113                </executions>
114            </plugin>
115        </plugins>
116    </build>
117</project>
Note: See TracBrowser for help on using the repository browser.