-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
49 lines (38 loc) · 2.07 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
<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>gabywald</groupId>
<artifactId>Java3D</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Java3D</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<java3d.version>1.5.2</java3d.version>
<java3d.version.alternative>1.3.1</java3d.version.alternative>
</properties>
<!-- <repositories> <repository> <id>Talan</id> <name>Talan Repository</name>
<url>https://nexus.talanlabs.com/content/repositories/releases/</url> </repository>
</repositories> -->
<!-- <repositories> <repository> <id>MVN</id> <name>MVN Repository</name>
<url>https://mvnrepository.com/artifact/</url> </repository> </repositories> -->
<dependencies>
<!-- https://mvnrepository.com/artifact/java3d/j3dutils -->
<!-- <dependency> <groupId>java3d</groupId> <artifactId>j3dutils</artifactId>
<version>${java3d.version}</version> </dependency> -->
<!-- https://mvnrepository.com/artifact/java3d/j3dcore -->
<!-- <dependency> <groupId>java3d</groupId> <artifactId>j3dcore</artifactId>
<version>${java3d.version}</version> </dependency> -->
<!-- https://mvnrepository.com/artifact/javax.vecmath/vecmath -->
<!-- <dependency> <groupId>javax.vecmath</groupId> <artifactId>vecmath</artifactId>
<version>${java3d.version}</version> </dependency> -->
<!-- https://mvnrepository.com/artifact/java3d/j3d-core-utils -->
<!-- <dependency> <groupId>java3d</groupId> <artifactId>j3d-core-utils</artifactId>
<version>${java3d.version.alternative}</version> </dependency> -->
<!-- https://mvnrepository.com/artifact/java3d/j3d-core -->
<!-- <dependency> <groupId>java3d</groupId> <artifactId>j3d-core</artifactId>
<version>${java3d.version.alternative}</version> </dependency> -->
</dependencies>
</project>