Skip to content

cogswell-io/cogs-java-client-sdk

Repository files navigation

Download

Cogswell Java SDK

The information below is general information provided on using the Cogswell Java SDK. For code examples and API references, see the corresponding docs.

Import into Project

The Cogswell Java SDK can be imported into a project either using the .jar files provided, or by including the appropriate information in your build file.

Using IntelliJ

Follow the instructions under Compile and Install the Source and include the following information in your build.gradle file. Make sure to choose Use default gradle wrapper (recommended) when creating your Gradle project.

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
    mavenLocal()
    jcenter()
}

dependencies {
    compile group: 'io.cogswell', name: 'cogs-java-client-sdk', version: '2.0.0'
}

Compile and Install the Source

Run the following command under the cogs-java-client-sdk directory.

On Linux:

./gradlew install

On Windows:

gradlew.bat install

Build the JAR File Only

If you are only interested in building the .jar file from the source, then you can run the command below. The new .jar file can be found in the directory cogs-java-client-sdk/build/libs.

On Linux

./gradlew build

On Windows

gradlew.bat build

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages