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

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

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

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