Join us at our Google Groups forum to ask questions, or see frequently asked questions.
See our Setup Guide which explains how to setup Eclipse with all the dependencies that you will need to build the sdk from source.
If using Intellij, simply import the project as a Gradle project.
To install the latest ds3_java_sdk
either download the latest release jar file from the Releases page or clone the repository with git clone https://github.com/SpectraLogic/ds3_java_sdk.git
, cd to ds3_java_sdk
and run ./gradlew clean ds3-sdk:install
to install the sdk into your local maven repository. It is compatible with Java 8.
The SDK can also be included directly into a Maven or Gradle build. There is also a fatjar version that you can optionally use with the all
classifier, take a look at the commented out code in the examples below. To include the SDK into maven add the following to the pom.xml
file:
<project>
...
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
...
<dependencies>
...
<dependency>
<groupId>com.github.spectralogic</groupId>
<artifactId>ds3_java_sdk</artifactId>
<version>Tag</version>
<!-- <classifier>all</classifier> -->
</dependency>
...
</dependencies>
</project>
To include the sdk into Gradle include the following in the build.gradle
file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.spectralogic:ds3_java_sdk:Tag'
implementation 'com.github.spectralogic:ds3_java_sdk:Tag:all'
}
The latest javadoc is located at http://spectralogic.github.io/ds3_java_sdk/javadoc/
If you would like to contribute to the source code, sign the Contributors Agreement and make sure that your source conforms to our Java Style Guide. For an overview of how we use Github, please review our Github Workflow.
All the examples are listed in the ds3-sdk-samples module.
The ds3_java_sdk
uses SLF4J for logging. Because of this, a consumer of
the sdk can use many different logging implementations and so long as the
correct SLF4J bridge is installed, have the sdk logs appear. For more
information on SLF4J and how to add different logging
bridges, please see SLF4j.org.
In addition to unit tests in the main ds3-sdk
module, there are additional integration tests in the ds3-integration
module. Please see the integration README for details on running the tests. To just run the SDK's unit tests use:
./gradlew clean ds3-sdk:test
Update the version of the SDK before creating a new release. The format is <major>.<minor>.<patch>
, where the
<major>.<minor>
numbers must match the version of BP. The <patch>
is an incrementing number that increments with
each SDK release for a given major/minor release.
The version is specified in the buildSrc/src/main/kotlin/ds3-java-sdk-version.gradle.kts
file:
group = "com.spectralogic.ds3"
version = "5.4.1"
When a release is created in github, it is automatically published on jitpack.io.