[1539] | 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"> |
---|
[1374] | 2 | <modelVersion>4.0.0</modelVersion> |
---|
| 3 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 4 | <artifactId>autoquest-httpmonitor</artifactId> |
---|
[2179] | 5 | <version>0.2.4-SNAPSHOT</version> |
---|
[1374] | 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> |
---|
[2179] | 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> |
---|
[1374] | 17 | </scm> |
---|
[1538] | 18 | <distributionManagement> |
---|
| 19 | <snapshotRepository> |
---|
| 20 | <id>autoquest-snapshots</id> |
---|
[2202] | 21 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url> |
---|
[1538] | 22 | </snapshotRepository> |
---|
| 23 | <repository> |
---|
| 24 | <id>autoquest</id> |
---|
[2202] | 25 | <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url> |
---|
[1538] | 26 | </repository> |
---|
| 27 | </distributionManagement> |
---|
[1374] | 28 | <dependencies> |
---|
| 29 | <dependency> |
---|
[2260] | 30 | <groupId>javax.xml.bind</groupId> |
---|
| 31 | <artifactId>jaxb-api</artifactId> |
---|
| 32 | <version>2.4.0-b180725.0427</version> |
---|
| 33 | </dependency> |
---|
| 34 | <dependency> |
---|
[1374] | 35 | <groupId>de.ugoe.cs</groupId> |
---|
| 36 | <artifactId>java-utils</artifactId> |
---|
[1940] | 37 | <version>${project.version}</version> |
---|
[1374] | 38 | </dependency> |
---|
| 39 | <dependency> |
---|
| 40 | <groupId>de.ugoe.cs.autoquest</groupId> |
---|
| 41 | <artifactId>autoquest-plugin-http</artifactId> |
---|
[2179] | 42 | <version>0.2.4-SNAPSHOT</version> |
---|
[1374] | 43 | </dependency> |
---|
| 44 | <dependency> |
---|
| 45 | <groupId>org.eclipse.jetty</groupId> |
---|
| 46 | <artifactId>jetty-server</artifactId> |
---|
| 47 | <version>9.1.0.M0</version> |
---|
| 48 | </dependency> |
---|
| 49 | <dependency> |
---|
| 50 | <groupId>org.eclipse.jetty</groupId> |
---|
| 51 | <artifactId>jetty-servlet</artifactId> |
---|
| 52 | <version>9.1.0.M0</version> |
---|
| 53 | </dependency> |
---|
| 54 | <dependency> |
---|
| 55 | <groupId>org.eclipse.jetty</groupId> |
---|
| 56 | <artifactId>jetty-proxy</artifactId> |
---|
| 57 | <version>9.1.0.M0</version> |
---|
| 58 | </dependency> |
---|
| 59 | </dependencies> |
---|
| 60 | <build> |
---|
| 61 | <plugins> |
---|
| 62 | <plugin> |
---|
| 63 | <groupId>org.jvnet.jaxb2.maven2</groupId> |
---|
| 64 | <artifactId>maven-jaxb2-plugin</artifactId> |
---|
[2273] | 65 | <version>0.14.0</version> |
---|
[1374] | 66 | <configuration> |
---|
| 67 | <generatePackage>de.ugoe.cs.autoquest.httpmonitor.exchange</generatePackage> |
---|
| 68 | </configuration> |
---|
| 69 | <executions> |
---|
| 70 | <execution> |
---|
| 71 | <goals> |
---|
| 72 | <goal>generate</goal> |
---|
| 73 | </goals> |
---|
| 74 | </execution> |
---|
| 75 | </executions> |
---|
| 76 | </plugin> |
---|
| 77 | <plugin> |
---|
| 78 | <artifactId>maven-compiler-plugin</artifactId> |
---|
[2260] | 79 | <version>3.8.0</version> |
---|
[1374] | 80 | <configuration> |
---|
[2260] | 81 | <release>11</release> |
---|
[1374] | 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> |
---|
[2191] | 115 | <plugin> |
---|
[2263] | 116 | <groupId>com.github.spotbugs</groupId> |
---|
| 117 | <artifactId>spotbugs-maven-plugin</artifactId> |
---|
| 118 | <version>3.1.12</version> |
---|
[2191] | 119 | <configuration> |
---|
| 120 | <xmlOutput>true</xmlOutput> |
---|
| 121 | </configuration> |
---|
| 122 | </plugin> |
---|
[1374] | 123 | </plugins> |
---|
| 124 | </build> |
---|
| 125 | </project> |
---|