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

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

[maven-release-plugin] prepare for next development iteration

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