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

Last change on this file since 1374 was 1374, checked in by pharms, 10 years ago

Initial import.

File size: 3.9 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/autoquest-httpmonitor</url>
20    </scm>
21    <dependencies>
22        <dependency>
23            <groupId>de.ugoe.cs</groupId>
24            <artifactId>java-utils</artifactId>
25            <version>0.0.1-SNAPSHOT</version>
26        </dependency>
27        <dependency>
28            <groupId>de.ugoe.cs.autoquest</groupId>
29            <artifactId>autoquest-plugin-http</artifactId>
30            <version>0.0.1-SNAPSHOT</version>
31        </dependency>
32        <dependency>
33            <groupId>org.eclipse.jetty</groupId>
34            <artifactId>jetty-server</artifactId>
35            <version>9.1.0.M0</version>
36        </dependency>
37        <dependency>
38            <groupId>org.eclipse.jetty</groupId>
39            <artifactId>jetty-servlet</artifactId>
40            <version>9.1.0.M0</version>
41        </dependency>
42        <dependency>
43            <groupId>org.eclipse.jetty</groupId>
44            <artifactId>jetty-proxy</artifactId>
45            <version>9.1.0.M0</version>
46        </dependency>
47    </dependencies>
48    <build>
49        <plugins>
50            <plugin>
51                <groupId>org.jvnet.jaxb2.maven2</groupId>
52                <artifactId>maven-jaxb2-plugin</artifactId>
53                <version>0.8.2</version>
54                <configuration>
55                    <generatePackage>de.ugoe.cs.autoquest.httpmonitor.exchange</generatePackage>
56                </configuration>
57                <executions>
58                    <execution>
59                        <goals>
60                            <goal>generate</goal>
61                        </goals>
62                    </execution>
63                </executions>
64            </plugin>
65            <plugin>
66                <artifactId>maven-compiler-plugin</artifactId>
67                <version>2.3.2</version>
68                <configuration>
69                    <source>1.7</source>
70                    <target>1.7</target>
71                </configuration>
72            </plugin>
73            <plugin>
74                <groupId>org.apache.maven.plugins</groupId>
75                <artifactId>maven-jar-plugin</artifactId>
76                <configuration>
77                    <archive>
78                        <manifest>
79                            <addClasspath>true</addClasspath>
80                            <classpathPrefix>lib/</classpathPrefix>
81                            <mainClass>de.ugoe.cs.autoquest.httpmonitor.Runner</mainClass>
82                        </manifest>
83                    </archive>
84                </configuration>
85            </plugin>
86            <plugin>
87                <artifactId>maven-assembly-plugin</artifactId>
88                <version>2.2-beta-2</version>
89                <configuration>
90                    <descriptors>
91                        <descriptor>src/main/assembly/bin.xml</descriptor>
92                    </descriptors>
93                </configuration>
94                <executions>
95                    <execution>
96                        <id>make-assembly</id>
97                        <phase>package</phase>
98                        <goals>
99                            <goal>single</goal>
100                        </goals>
101                    </execution>
102                </executions>
103            </plugin>
104        </plugins>
105    </build>
106</project>
Note: See TracBrowser for help on using the repository browser.