Created
June 4, 2015 16:43
-
-
Save dcki/87d26513dc424055d3ca to your computer and use it in GitHub Desktop.
maven pom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<groupId>io.github.vinietskyzilla</groupId> | |
<artifactId>my-app</artifactId> | |
<packaging>jar</packaging> | |
<version>1.0-SNAPSHOT</version> | |
<name>my-app</name> | |
<url>http://maven.apache.org</url> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.3</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>3.8.1</version> | |
<scope>test</scope> | |
</dependency> | |
<!-- | |
We have to explicitly instruct Maven to use tritonus-share 0.3.7-2 | |
and NOT 0.3.7-1, otherwise vorbisspi won't work. | |
--> | |
<dependency> | |
<groupId>com.googlecode.soundlibs</groupId> | |
<artifactId>tritonus-share</artifactId> | |
<version>0.3.7-2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.googlecode.soundlibs</groupId> | |
<artifactId>mp3spi</artifactId> | |
<version>1.9.5-1</version> | |
</dependency> | |
<dependency> | |
<groupId>com.googlecode.soundlibs</groupId> | |
<artifactId>vorbisspi</artifactId> | |
<version>1.0.3-1</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment