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.WatchBeam:beam-interactive-java:'
}
dependencies {
implementation("com.github.WatchBeam:beam-interactive-java:")
}
<dependency>
<groupId>com.github.WatchBeam</groupId>
<artifactId>beam-interactive-java</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.WatchBeam" % "beam-interactive-java" % ""
:dependencies [[com.github.WatchBeam/beam-interactive-java ""]]
A Java client designed to interface with the Beam Interactive API.
To use this client in a project, you may add it to your pom.xml with the following:
<repositories>
<repository>
<id>beam-releases</id>
<url>https://maven.mixer.com/content/repositories/releases/</url>
</repository>
<repository>
<id>beam-snapshots</id>
<url>https://maven.mixer.com/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>pro.beam</groupId>
<artifactId>interactive</artifactId>
<version>1.5.2-SNAPSHOT</version>
</dependency>
</dependencies>
then head to the example sources and browse for yourself.
We use Maven to handle our dependencies.
mvn clean install
Someone is always available in our Gitter room, and many resources can be found on our developer site.
MIT.