source: trunk/autoquest-jfcmonitor/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

  • Property svn:mime-type set to text/plain
File size: 2.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-jfcmonitor</artifactId>
5    <version>0.1.1-SNAPSHOT</version>
6    <name>autoquest-jfcmonitor</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    <scm>
14        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/tags/autoquest-release-0.1.0/autoquest-jfcmonitor</url>
15    </scm>
16    <dependencies>
17        <dependency>
18            <groupId>de.ugoe.cs</groupId>
19            <artifactId>java-utils</artifactId>
20            <version>0.1.1-SNAPSHOT</version>
21        </dependency>
22    </dependencies>
23    <build>
24        <plugins>
25            <plugin>
26                <artifactId>maven-compiler-plugin</artifactId>
27                <version>2.3.2</version>
28                <configuration>
29                    <source>1.6</source>
30                    <target>1.6</target>
31                </configuration>
32            </plugin>
33            <plugin>
34                <groupId>org.apache.maven.plugins</groupId>
35                <artifactId>maven-jar-plugin</artifactId>
36                <configuration>
37                    <archive>
38                        <manifest>
39                            <addClasspath>true</addClasspath>
40                            <classpathPrefix>lib/</classpathPrefix>
41                            <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass>
42                        </manifest>
43                    </archive>
44                </configuration>
45            </plugin>
46            <plugin>
47                <artifactId>maven-assembly-plugin</artifactId>
48                <version>2.2-beta-2</version>
49                <configuration>
50                    <descriptors>
51                        <descriptor>src/main/assembly/bin.xml</descriptor>
52                    </descriptors>
53                </configuration>
54                <executions>
55                    <execution>
56                        <id>make-assembly</id>
57                        <phase>package</phase>
58                        <goals>
59                            <goal>single</goal>
60                        </goals>
61                    </execution>
62                </executions>
63            </plugin>
64        </plugins>
65    </build>
66</project>
Note: See TracBrowser for help on using the repository browser.