forked from dyn4j/dyn4j-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
51 lines (51 loc) · 1.64 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.dyn4j</groupId>
<artifactId>dyn4j-samples</artifactId>
<version>1.0.0</version>
<name>dyn4j-samples</name>
<url>http://www.dyn4j.org</url>
<description>A collection of samples that use the dyn4j library in a variety of ways</description>
<inceptionYear>2010</inceptionYear>
<organization>
<name>dyn4j</name>
<url>http://www.dyn4j.org</url>
</organization>
<scm>
<url>https://github.com/dyn4j/dyn4j-samples</url>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/dyn4j/dyn4j-samples/issues</url>
</issueManagement>
<properties>
<maven.compiler.release>6</maven.compiler.release>
</properties>
<dependencies>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.dyn4j</groupId>
<artifactId>dyn4j</artifactId>
<version>4.2.0</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>