All Projects → schnatterer → Musicbrainzws2 Java

schnatterer / Musicbrainzws2 Java

Licence: other
java binding for MusicBrainz XML Web Service/Version 2

Programming Languages

java
68154 projects - #9 most used programming language

musicbrainzws2-java

Build Status License

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.

How to use

For now, this is not hosted on maven central, but on this very repository. To use it, you have two options:

  1. Add this repo as maven repository
  2. Use jitPack

See the wiki for further information.

Add this repo as maven repository

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>

Use jitPack

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>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].