source: trunk/quest-jfcmonitor/pom.xml @ 826

Last change on this file since 826 was 826, checked in by sherbold, 12 years ago
  • created assembly for quest-jfcmonitor
  • Property svn:mime-type set to text/plain
File size: 1.7 KB
Line 
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3        <modelVersion>4.0.0</modelVersion>
4        <groupId>de.ugoe.cs.quest</groupId>
5        <artifactId>quest-jfcmonitor</artifactId>
6        <version>0.0.1-SNAPSHOT</version>
7        <name>quest-jfcmonitor</name>
8        <scm>
9                <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-jfcmonitor</url>
10        </scm>
11        <dependencies>
12                <dependency>
13                        <groupId>de.ugoe.cs</groupId>
14                        <artifactId>java-utils</artifactId>
15                        <version>0.0.1-SNAPSHOT</version>
16                </dependency>
17        </dependencies>
18        <build>
19                <plugins>
20                        <plugin>
21                                <artifactId>maven-compiler-plugin</artifactId>
22                                <version>2.3.2</version>
23                                <configuration>
24                                        <source>1.6</source>
25                                        <target>1.6</target>
26                                </configuration>
27                        </plugin>
28                        <plugin>
29                                <groupId>org.apache.maven.plugins</groupId>
30                                <artifactId>maven-jar-plugin</artifactId>
31                                <configuration>
32                                        <archive>
33                                                <manifest>
34                                                        <addClasspath>true</addClasspath>
35                                                        <classpathPrefix>lib/</classpathPrefix>
36                                                        <mainClass>de.ugoe.cs.quest.jfcmonitor.JFCMonitor</mainClass>
37                                                </manifest>
38                                        </archive>
39                                </configuration>
40                        </plugin>
41                        <plugin>
42                                <artifactId>maven-assembly-plugin</artifactId>
43                                <version>2.2-beta-2</version>
44                                <configuration>
45                                        <descriptors>
46                                                <descriptor>src/main/assembly/bin.xml</descriptor>
47                                        </descriptors>
48                                </configuration>
49                                <executions>
50                                        <execution>
51                                                <id>make-assembly</id>
52                                                <phase>package</phase>
53                                                <goals>
54                                                        <goal>single</goal>
55                                                </goals>
56                                        </execution>
57                                </executions>
58                        </plugin>
59                </plugins>
60        </build>
61</project>
Note: See TracBrowser for help on using the repository browser.