diff options
author | Julien Gouesse <[email protected]> | 2023-04-09 13:07:45 +0200 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2023-04-09 13:07:45 +0200 |
commit | 6fe14e658bf67881265bb132455ca1af866d906a (patch) | |
tree | 7a02e1ee6080e647be16b09c84b0bddc482c3fe4 /ardor3d-audio/pom.xml | |
parent | b3509d75ba4c8943fec5dd999b04c1cd6dbdfb7f (diff) |
Adds ardor3d-audio into the Maven build
Diffstat (limited to 'ardor3d-audio/pom.xml')
-rw-r--r-- | ardor3d-audio/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ardor3d-audio/pom.xml b/ardor3d-audio/pom.xml new file mode 100644 index 0000000..18a2c35 --- /dev/null +++ b/ardor3d-audio/pom.xml @@ -0,0 +1,22 @@ +<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> + <version>1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>ardor3d-audio</artifactId> + <packaging>bundle</packaging> + <name>Ardor 3D Sound System</name> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-core</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + +</project> |