This SDK adds implementations and/or extensions of the Solid Server SDK for an AWS environment.
It requires Java 8 or later.
To build a standalone jar usable in projects:
./gradlew buildJar is produced in build/libs/
To run the tests:
./gradlew testDetailed results are produced and saved at build/reports/tests/test/index.html
To produce the javadoc:
./gradlew javadocThen go to build/docs/javadoc/
To use in other projects, either build the binary jar and include in your classpath, or import the project directly.
In settings.gradle:
include(':aws-sdk')
project(':aws-sdk').projectDir = file('/path/to/this/sdk')
In build.gradle:
dependencies {
api project(':aws-sdk')
// Other dependencies...
}