aboutsummaryrefslogtreecommitdiffstats
path: root/ardor3d-jogl/pom.xml
blob: 49cba62fcc2de391606e0454ddb63d89fbd06677 (plain)
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
<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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.ardor3d</groupId>
    <artifactId>ardor3d</artifactId>
    <relativePath>../pom.xml</relativePath>
    <version>0.9-SNAPSHOT</version>
  </parent>

  <artifactId>ardor3d-jogl</artifactId>
  <packaging>bundle</packaging>
  <name>Ardor 3D JOGL</name>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <dependencies>
	    <dependency>
	      <groupId>${project.groupId}</groupId>
	      <artifactId>ardor3d-core</artifactId>
	      <version>${project.version}</version>
	    </dependency>
	    <dependency>
	      <groupId>org.jogamp.gluegen</groupId>
	      <artifactId>gluegen-rt-main</artifactId>
	    </dependency>
	    <dependency>
	      <groupId>org.jogamp.jogl</groupId>
	      <artifactId>jogl-all-main</artifactId>
	    </dependency>
	    <!-- 
	    <dependency>
	      <groupId>org.jogamp.joal</groupId>
	      <artifactId>joal-main</artifactId>
	      <version>2.0-rc11</version>
	    </dependency>
	    <dependency>
	      <groupId>org.jogamp.jocl</groupId>
	      <artifactId>jocl-main</artifactId>
	      <version>2.0-rc11</version>
	    </dependency> -->
	</dependencies>
	<repositories>
        <repository>
            <id>jogamp</id>
            <url>http://jogamp.org/deployment/maven</url>
        </repository>
    </repositories>
</project>