X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/0df5f0feeced5bff0adfb806dae2d3811257827f..438c1957f41643650b9a54419179c9228cd6fa6c:/doc/sdk/java-v2/index.html.textile.liquid diff --git a/doc/sdk/java-v2/index.html.textile.liquid b/doc/sdk/java-v2/index.html.textile.liquid index 2693b6956c..ad9f0e1a9d 100644 --- a/doc/sdk/java-v2/index.html.textile.liquid +++ b/doc/sdk/java-v2/index.html.textile.liquid @@ -10,13 +10,33 @@ Copyright (C) The Arvados Authors. All rights reserved. SPDX-License-Identifier: CC-BY-SA-3.0 {% endcomment %} -The Arvados Java SDK v2 provides a high level API for working with Arvados resources. It is packaged as a single JAR named -arvados-java-.jar, e.g. arvados-java-2.0.0.jar -which can be included in your project using Gradle, Maven, or by hand. +The Arvados Java SDK v2 provides a high level API for working with Arvados resources. h2. Using the SDK -FIXME - Add intro text here +The SDK is packaged as a JAR named @arvados-java-.jar@, which is published to Maven Central and can be included using Maven, Gradle, or by hand. + +Here is an example @build.gradle@ file that uses the Arvados java sdk: + +
+apply plugin: 'application'
+apply plugin: 'java-library'
+apply plugin: 'maven'
+
+repositories {
+    mavenCentral()
+}
+
+application {
+    mainClassName = "org.arvados.example.CollectionExample"
+}
+
+dependencies {
+    api 'org.arvados:arvados-java-sdk:0.1.1'
+}
+
+ +See "Java SDK Examples":example.html to get started using the SDK. h3. Logging @@ -117,10 +137,10 @@ Dependencies:
-$ git clone https://github.com/curoverse/arvados.git
+$ git clone https://github.com/arvados/arvados.git
 $ cd arvados/sdk/java-v2
 $ gradle test
-$ gradle jar
+$ gradle jar -Pversion=0.1.1
 
-This will build the SDK and run all unit tests, then generate an Arvados Java sdk jar file in build/libs/arvados-java-2.0.0.jar +This will build the SDK and run all unit tests, then generate an Arvados Java sdk jar file in build/libs/arvados-java-0.1.1.jar