Getting Started

Add snapshot repository and dependency to POM

If you are not using Maven 2 for your project then skip this section.

The snapshots are available via the snapshot repository. To access them, add the following to your POM:

<repositories>
    <repository>
        <id>Tag Team Snapshots</id>
        <url>http://tagteam.sourceforge.net/maven2snapshotrepository</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
        <releases>
            <enabled>false</enabled>
        </releases>
    </repository>
</repositories>

Then add the dependency to your POM:

<dependencies>
    <dependency>
        <groupId>net.sf.tagteam.id3</groupId>
        <artifactId>tagteam-id3</artifactId>
        <version>1.0-SNAPSHOT</version>
    </dependency>
</dependencies>

You are now ready to work on your project using the snapshot of the ID3 Library (tagteam-id3).