source: trunk/autoquest-generic-event-monitor/pom.xml @ 2284

Last change on this file since 2284 was 2263, checked in by pharms, 5 years ago
  • Property svn:mime-type set to text/plain
File size: 4.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-generic-event-monitor</artifactId>
5    <version>0.2.4-SNAPSHOT</version>
6    <name>autoquest-generic-event-monitor</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    <distributionManagement>
19        <snapshotRepository>
20            <id>autoquest-snapshots</id>
21            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-snapshots</url>
22        </snapshotRepository>
23        <repository>
24            <id>autoquest</id>
25            <url>https://nexus.informatik.uni-goettingen.de/content/repositories/autoquest-releases</url>
26        </repository>
27    </distributionManagement>
28    <pluginRepositories>
29        <pluginRepository>
30            <id>javascript</id>
31            <name>Codehaus Snapshot Repository</name>
32            <url>https://nexus.codehaus.org/content/groups/snapshots-group/</url>
33            <layout>default</layout>
34            <snapshots>
35                <enabled>true</enabled>
36            </snapshots>
37            <releases>
38                <updatePolicy>never</updatePolicy>
39            </releases>
40        </pluginRepository>
41    </pluginRepositories>
42    <properties>
43        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44    </properties>
45    <dependencies>
46        <dependency>
47            <groupId>de.ugoe.cs</groupId>
48            <artifactId>java-utils</artifactId>
49            <version>${project.version}</version>
50        </dependency>
51        <dependency>
52            <groupId>org.eclipse.jetty</groupId>
53            <artifactId>jetty-server</artifactId>
54            <version>9.1.0.M0</version>
55        </dependency>
56        <dependency>
57            <groupId>org.eclipse.jetty</groupId>
58            <artifactId>jetty-servlet</artifactId>
59            <version>9.1.0.M0</version>
60        </dependency>
61        <dependency>
62            <groupId>org.eclipse.jetty</groupId>
63            <artifactId>jetty-servlets</artifactId>
64            <version>9.1.0.M0</version>
65        </dependency>
66        <dependency>
67            <groupId>com.googlecode.json-simple</groupId>
68            <artifactId>json-simple</artifactId>
69            <version>1.1.1</version>
70        </dependency>
71        <dependency>
72            <groupId>commons-codec</groupId>
73            <artifactId>commons-codec</artifactId>
74            <version>1.7</version>
75        </dependency>
76    </dependencies>
77  <build>
78    <plugins>
79      <plugin>
80        <artifactId>maven-compiler-plugin</artifactId>
81                <version>3.8.0</version>
82                <configuration>
83                    <release>11</release>
84                </configuration>
85            </plugin>
86            <plugin>
87                <groupId>org.apache.maven.plugins</groupId>
88                <artifactId>maven-jar-plugin</artifactId>
89                <configuration>
90                    <archive>
91                        <manifest>
92                            <addClasspath>true</addClasspath>
93                            <classpathPrefix>lib/</classpathPrefix>
94                            <mainClass>de.ugoe.cs.autoquest.genericeventmonitor.Runner</mainClass>
95                        </manifest>
96                    </archive>
97                </configuration>
98            </plugin>
99            <plugin>
100                <artifactId>maven-assembly-plugin</artifactId>
101                <version>2.2-beta-2</version>
102                <configuration>
103                    <descriptors>
104                        <descriptor>src/main/assembly/bin.xml</descriptor>
105                    </descriptors>
106                </configuration>
107                <executions>
108                    <execution>
109                        <id>make-assembly</id>
110                        <phase>package</phase>
111                        <goals>
112                            <goal>single</goal>
113                        </goals>
114                    </execution>
115                </executions>
116            </plugin>
117            <plugin>
118                <groupId>com.github.spotbugs</groupId>
119                <artifactId>spotbugs-maven-plugin</artifactId>
120                <version>3.1.12</version>
121                <configuration>
122                    <xmlOutput>true</xmlOutput>
123                </configuration>
124            </plugin>
125       </plugins>
126  </build>
127</project>
Note: See TracBrowser for help on using the repository browser.