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

Last change on this file since 2179 was 2179, checked in by pharms, 7 years ago

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

  • Property svn:mime-type set to text/plain
File size: 4.6 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://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
22        </snapshotRepository>
23        <repository>
24            <id>autoquest</id>
25            <url>https://trex.informatik.uni-goettingen.de/nexus/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>2.3.2</version>
82                <configuration>
83                    <source>1.7</source>
84                    <target>1.7</target>
85                </configuration>
86            </plugin>
87            <plugin>
88                <groupId>org.apache.maven.plugins</groupId>
89                <artifactId>maven-jar-plugin</artifactId>
90                <configuration>
91                    <archive>
92                        <manifest>
93                            <addClasspath>true</addClasspath>
94                            <classpathPrefix>lib/</classpathPrefix>
95                            <mainClass>de.ugoe.cs.autoquest.genericeventmonitor.Runner</mainClass>
96                        </manifest>
97                    </archive>
98                </configuration>
99            </plugin>
100            <plugin>
101                <artifactId>maven-assembly-plugin</artifactId>
102                <version>2.2-beta-2</version>
103                <configuration>
104                    <descriptors>
105                        <descriptor>src/main/assembly/bin.xml</descriptor>
106                    </descriptors>
107                </configuration>
108                <executions>
109                    <execution>
110                        <id>make-assembly</id>
111                        <phase>package</phase>
112                        <goals>
113                            <goal>single</goal>
114                        </goals>
115                    </execution>
116                </executions>
117            </plugin>
118       </plugins>
119  </build>
120</project>
Note: See TracBrowser for help on using the repository browser.