Last change
on this file since 967 was
927,
checked in by sherbold, 12 years ago
|
- added copyright under the Apache License, Version 2.0
|
-
Property svn:mime-type set to
text/plain
|
File size:
1.9 KB
|
Rev | Line | |
---|
[822] | 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>
|
---|
[920] | 4 | <groupId>de.ugoe.cs.autoquest</groupId>
|
---|
| 5 | <artifactId>autoquest-jfcmonitor</artifactId>
|
---|
[822] | 6 | <version>0.0.1-SNAPSHOT</version>
|
---|
[920] | 7 | <name>autoquest-jfcmonitor</name>
|
---|
[927] | 8 | <licenses>
|
---|
| 9 | <license>
|
---|
| 10 | <name>The Apache Software License, Version 2.0</name>
|
---|
| 11 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
---|
| 12 | </license>
|
---|
| 13 | </licenses>
|
---|
[826] | 14 | <scm>
|
---|
[920] | 15 | <url>https://autoquest.informatik.uni-goettingen.de/svn/autoquest/trunk/autoquest-jfcmonitor</url>
|
---|
[826] | 16 | </scm>
|
---|
[822] | 17 | <dependencies>
|
---|
| 18 | <dependency>
|
---|
| 19 | <groupId>de.ugoe.cs</groupId>
|
---|
| 20 | <artifactId>java-utils</artifactId>
|
---|
| 21 | <version>0.0.1-SNAPSHOT</version>
|
---|
| 22 | </dependency>
|
---|
| 23 | </dependencies>
|
---|
| 24 | <build>
|
---|
| 25 | <plugins>
|
---|
| 26 | <plugin>
|
---|
| 27 | <artifactId>maven-compiler-plugin</artifactId>
|
---|
| 28 | <version>2.3.2</version>
|
---|
| 29 | <configuration>
|
---|
| 30 | <source>1.6</source>
|
---|
| 31 | <target>1.6</target>
|
---|
| 32 | </configuration>
|
---|
| 33 | </plugin>
|
---|
[826] | 34 | <plugin>
|
---|
| 35 | <groupId>org.apache.maven.plugins</groupId>
|
---|
| 36 | <artifactId>maven-jar-plugin</artifactId>
|
---|
| 37 | <configuration>
|
---|
| 38 | <archive>
|
---|
| 39 | <manifest>
|
---|
| 40 | <addClasspath>true</addClasspath>
|
---|
| 41 | <classpathPrefix>lib/</classpathPrefix>
|
---|
[920] | 42 | <mainClass>de.ugoe.cs.autoquest.jfcmonitor.Runner</mainClass>
|
---|
[826] | 43 | </manifest>
|
---|
| 44 | </archive>
|
---|
| 45 | </configuration>
|
---|
| 46 | </plugin>
|
---|
| 47 | <plugin>
|
---|
| 48 | <artifactId>maven-assembly-plugin</artifactId>
|
---|
| 49 | <version>2.2-beta-2</version>
|
---|
| 50 | <configuration>
|
---|
| 51 | <descriptors>
|
---|
| 52 | <descriptor>src/main/assembly/bin.xml</descriptor>
|
---|
| 53 | </descriptors>
|
---|
| 54 | </configuration>
|
---|
| 55 | <executions>
|
---|
| 56 | <execution>
|
---|
| 57 | <id>make-assembly</id>
|
---|
| 58 | <phase>package</phase>
|
---|
| 59 | <goals>
|
---|
| 60 | <goal>single</goal>
|
---|
| 61 | </goals>
|
---|
| 62 | </execution>
|
---|
| 63 | </executions>
|
---|
| 64 | </plugin>
|
---|
[822] | 65 | </plugins>
|
---|
| 66 | </build>
|
---|
| 67 | </project> |
---|
Note: See
TracBrowser
for help on using the repository browser.