-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
pom.xml
40 lines (37 loc) · 1.47 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
<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>
<!-- this is a dummy pom.xml that is only used for automatically downloading
unit testing dependencies using the following command:
mvn dependency:copy-dependencies -DoutputDirectory=library -->
<groupId>processing</groupId>
<artifactId>sound</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency><!-- depends on tritonus-share-0.3.7.4 and jlayer-1.0.1.4 -->
<groupId>com.googlecode.soundlibs</groupId>
<artifactId>mp3spi</artifactId>
<version>1.9.5.4</version>
</dependency>
<!-- TODO switch to this github package repository, which requires auth setup
it would up tritonus to 0.3.11, jlayer to 1.0.2, plus add two extra dependencies.
https://github.com/umjammer/mp3spi/packages/1067666
<dependency>
<groupId>net.javazoom</groupId>
<artifactId>mp3spi</artifactId>
<version>1.9.13</version>
</dependency>
-->
<dependency>
<groupId>com.googlecode.soundlibs</groupId>
<artifactId>vorbisspi</artifactId>
<version>1.0.3.3</version>
</dependency>
</dependencies>
</project>