Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.maxbruecken:jaudiotagger-android:'
}
dependencies {
implementation("com.github.maxbruecken:jaudiotagger-android:")
}
<dependency>
<groupId>com.github.maxbruecken</groupId>
<artifactId>jaudiotagger-android</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.maxbruecken" % "jaudiotagger-android" % ""
:dependencies [[com.github.maxbruecken/jaudiotagger-android ""]]
Jaudiotagger is a Java API for audio metatagging. Both a common API and format specific APIs are available, currently supports reading and writing metadata for:
Jaudiotagger requires Java 1.8 for a full build and install, but the code is Java 1.7 compatible (You can run mvn package successfully with Java 1.7)
Jaudiotagger welcomes contributors, if you make an improvement or bug fix we are very likely to merge it back into the master branch with a minimum of fuss. If you can't contribute code but would like to support this project please consider making a donation—donations can be made at here.
Build is with Maven.
pom.xml : Maven build fileDirectory structure as follows:
src : source code directorysrctest : source test code directorywww : java doc directorytestdata : test files for use by the junit tests, not all tests are included in the distribution because of copyrighttarget : contains the jaudiotagger***.jar built from mavenjaudiotagger.iml : JetBrains Intellij Modulejaudiotagger.ipr : JetBrains Intellij Projectlicense.txt : license fileRun
mvn install
to compile, test, build javadocs and install into your local repository.
Run
mvn site
to generate a website for Jaudiotagger including code coverage reports,
they will be found in target/site/index.html.
Your test coverage can be seen at target/site/cobertura/index.html.
Periodically we upload latest Code Coverage to: http://www.jthink.net/jaudiotagger/maven/cobertura/index.html
Jaudiotagger uses http://drone.io for continuous integration, the latest artifacts can be downloaded from
https://drone.io/bitbucket.org/ijabz/jaudiotagger/files
To use in your own project starting with Jaudiotagger 2.2.3 as final versions are released they are now available in a maven repository on bintray.
I.e update your pom.xml as follows to use release 2.2.3:
<repositories>
<repository>
<id>jaudiotagger-repository</id>
<url>https://dl.bintray.com/ijabz/maven</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>net.jthink</groupId>
<artifactId>jaudiotagger</artifactId>
<version>2.2.3</version>
</dependency>
</dependencies>