source: trunk/autoquest-jfcmonitor/pom.xml @ 1536

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

[maven-release-plugin] rollback the release of autoquest-release-0.1.0

  • Property svn:mime-type set to text/plain
File size: 2.7 KB
Line 
1<project
2    xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5>
6    <modelVersion>4.0.0</modelVersion>
7    <groupId>de.ugoe.cs.autoquest</groupId>
8    <artifactId>autoquest-jfcmonitor</artifactId>
9    <version>0.0.1-SNAPSHOT</version>
10    <name>autoquest-jfcmonitor</name>
11    <licenses>
12        <license>
13            <name>The Apache Software License, Version 2.0</name>
14            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
15        </license>
16    </licenses>
17    <scm>
18        <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</url>
19        <connection>scm:svn:https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/${project.artifactId}</connection>
20    </scm>
21    <dependencies>
22        <dependency>
23            <groupId>de.ugoe.cs</groupId>
24            <artifactId>java-utils</artifactId>
25            <version>0.0.1-SNAPSHOT</version>
26        </dependency>
27    </dependencies>
28    <build>
29        <plugins>
30            <plugin>
31                <artifactId>maven-compiler-plugin</artifactId>
32                <version>2.3.2</version>
33                <configuration>
34                    <source>1.6</source>
35                    <target>1.6</target>
36                </configuration>
37            </plugin>
38            <plugin>
39                <groupId>org.apache.maven.plugins</groupId>
40                <artifactId>maven-jar-plugin</artifactId>
41                <configuration>
42                    <archive>
43                        <manifest>
44                            <addClasspath>true</addClasspath>
45                            <classpathPrefix>lib/</classpathPrefix>
46                            <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass>
47                        </manifest>
48                    </archive>
49                </configuration>
50            </plugin>
51            <plugin>
52                <artifactId>maven-assembly-plugin</artifactId>
53                <version>2.2-beta-2</version>
54                <configuration>
55                    <descriptors>
56                        <descriptor>src/main/assembly/bin.xml</descriptor>
57                    </descriptors>
58                </configuration>
59                <executions>
60                    <execution>
61                        <id>make-assembly</id>
62                        <phase>package</phase>
63                        <goals>
64                            <goal>single</goal>
65                        </goals>
66                    </execution>
67                </executions>
68            </plugin>
69        </plugins>
70    </build>
71</project>
Note: See TracBrowser for help on using the repository browser.