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

Last change on this file since 1538 was 1538, checked in by pharms, 10 years ago
  • preparation for release of 0.1.0
  • Property svn:mime-type set to text/plain
File size: 3.2 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    <distributionManagement>
22        <snapshotRepository>
23            <id>autoquest-snapshots</id>
24            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-snapshots</url>
25        </snapshotRepository>
26        <repository>
27            <id>autoquest</id>
28            <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/autoquest-releases</url>
29        </repository>
30    </distributionManagement>
31    <dependencies>
32        <dependency>
33            <groupId>de.ugoe.cs</groupId>
34            <artifactId>java-utils</artifactId>
35            <version>0.0.1-SNAPSHOT</version>
36        </dependency>
37    </dependencies>
38    <build>
39        <plugins>
40            <plugin>
41                <artifactId>maven-compiler-plugin</artifactId>
42                <version>2.3.2</version>
43                <configuration>
44                    <source>1.6</source>
45                    <target>1.6</target>
46                </configuration>
47            </plugin>
48            <plugin>
49                <groupId>org.apache.maven.plugins</groupId>
50                <artifactId>maven-jar-plugin</artifactId>
51                <configuration>
52                    <archive>
53                        <manifest>
54                            <addClasspath>true</addClasspath>
55                            <classpathPrefix>lib/</classpathPrefix>
56                            <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass>
57                        </manifest>
58                    </archive>
59                </configuration>
60            </plugin>
61            <plugin>
62                <artifactId>maven-assembly-plugin</artifactId>
63                <version>2.2-beta-2</version>
64                <configuration>
65                    <descriptors>
66                        <descriptor>src/main/assembly/bin.xml</descriptor>
67                    </descriptors>
68                </configuration>
69                <executions>
70                    <execution>
71                        <id>make-assembly</id>
72                        <phase>package</phase>
73                        <goals>
74                            <goal>single</goal>
75                        </goals>
76                    </execution>
77                </executions>
78            </plugin>
79        </plugins>
80    </build>
81</project>
Note: See TracBrowser for help on using the repository browser.