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

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

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

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