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.bitmovin:bitmovin-java:3.1.1-alpha-0'
}
dependencies {
implementation("com.github.bitmovin:bitmovin-java:3.1.1-alpha-0")
}
<dependency>
<groupId>com.github.bitmovin</groupId>
<artifactId>bitmovin-java</artifactId>
<version>3.1.1-alpha-0</version>
</dependency>
libraryDependencies += "com.github.bitmovin" % "bitmovin-java" % "3.1.1-alpha-0"
:dependencies [[com.github.bitmovin/bitmovin-java "3.1.1-alpha-0"]]
bitmovin-java
is the legacy Bitmovin API client for Java.
We recommend using the new client, which you can find at bitmovin-api-sdk-java. Using the new client guarantees 100% specification conformity at any given time and access to all features of the API as soon as they are released.
JAVA-Client which enables you to seamlessly integrate the Bitmovin API into your projects. Using this API client requires an active account. Sign up for a Bitmovin API key.
The full Bitmovin API reference can be found on our website.
Add this to your pom.xml:
<dependency>
<groupId>com.bitmovin.api</groupId>
<artifactId>bitmovin-java</artifactId>
<version>1.59.0</version>
</dependency>
For examples go to our example page.