This is a fork of musicbrainzws2-java, originally hosted here. It includes several bugfixes as well as maven integration. The original wiki was migrated and can now be found here. You can find the original Readme file here.
This fork was implemented as part of the nusic-app.
For now, this is not hosted on maven central, but on this very repository. To use it, you have two options:
- Add this repo as maven repository
- Use jitPack
See the wiki for further information.
Add the following maven repository to your POM.xml
<repositories>
<repository>
<id>musicbrainzws2-java-mvn-repo</id>
<url>https://raw.github.com/schnatterer/musicbrainzws2-java/mvn-repo/</url>
</repository>
</repositories>
Then add the actual dependency
<dependency>
<groupId>info.schnatterer.musicbrainzws2-java</groupId>
<artifactId>musicbrainzws2-java</artifactId>
<version>3.0.0</version>
</dependency>
Add the following maven repository to your POM.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Then add the actual dependency
<dependency>
<groupId>com.github.schnatterer</groupId>
<artifactId>musicbrainzws2-java</artifactId>
<version>v.3.0.0</version>
</dependency>