-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
96 lines (96 loc) · 3.27 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>eu.beautifulcode</groupId>
<artifactId>tensegrity-klein</artifactId>
<packaging>jar</packaging>
<name>Tensegrity Klein Bottle</name>
<version>1.0.0</version>
<inceptionYear>2008</inceptionYear>
<developers>
<developer>
<name>Gerald de Jong</name>
<email>[email protected]</email>
<roles>
<role>creator</role>
</roles>
</developer>
</developers>
<organization>
<name>Beautiful Code BV</name>
<url>http://www.beautifulcode.eu</url>
</organization>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<groupId>org.codehaus.mojo.webstart</groupId>
<artifactId>webstart-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jnlp-inline</goal>
</goals>
</execution>
</executions>
<configuration>
<libPath/>
<jnlp>
<outputFile>tensegrity-klein.jnlp</outputFile>
<mainClass>eu.beautifulcode.eig.gui.TensegrityKlein</mainClass>
</jnlp>
<pack200>false</pack200>
<gzip>false</gzip>
<outputJarVersions>false</outputJarVersions>
<verbose>false</verbose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.4.1</version>
<configuration>
<groups>regression</groups>
<parallel>true</parallel>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.1.4</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>