diff options
author | Julien Gouesse <[email protected]> | 2023-04-09 13:13:05 +0200 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2023-04-09 13:13:05 +0200 |
commit | 76e5724957e40e23e188bc1c8d932f9714f69413 (patch) | |
tree | 9a9b98f27946a849fd97a9a7df91416b05ec443e | |
parent | 6fe14e658bf67881265bb132455ca1af866d906a (diff) |
Adds ardor3d-audio-joal into the Maven build
-rw-r--r-- | ardor3d-audio-joal/pom.xml | 43 | ||||
-rw-r--r-- | pom.xml | 2 |
2 files changed, 44 insertions, 1 deletions
diff --git a/ardor3d-audio-joal/pom.xml b/ardor3d-audio-joal/pom.xml new file mode 100644 index 0000000..5168ea9 --- /dev/null +++ b/ardor3d-audio-joal/pom.xml @@ -0,0 +1,43 @@ +<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>org.jogamp.ardor3d</groupId> + <artifactId>ardor3d</artifactId> + <relativePath>../pom.xml</relativePath> + <version>1.0-SNAPSHOT</version> + </parent> + + <artifactId>ardor3d-audio-joal</artifactId> + <packaging>bundle</packaging> + <name>Ardor 3D Sound System backend based on JOAL</name> + + <repositories> + <!-- This repository should be used only for unreleased development versions, typically all release candidates and post builds --> + <repository> + <id>jogamp</id> + <url>http://jogamp.org/deployment/maven</url> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-audio</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.jogamp.gluegen</groupId> + <artifactId>gluegen-rt-main</artifactId> + </dependency> + <dependency> + <groupId>org.jogamp.joal</groupId> + <artifactId>joal-main</artifactId> + </dependency> + </dependencies> + +</project> @@ -58,7 +58,7 @@ <module>ardor3d-math</module> <module>ardor3d-core</module> <module>ardor3d-audio</module> - <!--<module>ardor3d-audio-joal</module>--> + <module>ardor3d-audio-joal</module> <module>ardor3d-jinput</module> <module>ardor3d-jogl</module> <module>ardor3d-swt</module> |