Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 964 Bytes

File metadata and controls

51 lines (41 loc) · 964 Bytes

Solid Server on AWS - Java SDK

Overview

This SDK adds implementations and/or extensions of the Solid Server SDK for an AWS environment.
It requires Java 8 or later.

Build

Binaries

To build a standalone jar usable in projects:

./gradlew build

Jar is produced in build/libs/

Test

To run the tests:

./gradlew test

Detailed results are produced and saved at build/reports/tests/test/index.html

Javadoc

To produce the javadoc:

./gradlew javadoc

Then go to build/docs/javadoc/

Use

To use in other projects, either build the binary jar and include in your classpath, or import the project directly.

Gradle

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...
}