33[](https://github.com/semantic-release/semantic-release)
44-->
55
6- # IBM Cloud Code Engine Java SDK Version 0.3.3
6+ # IBM Cloud Code Engine Java SDK Version 2.0.0
77Java client library to interact with the [ Code Engine API] ( https://cloud.ibm.com/apidocs/codeengine ) .
88
9- Disclaimer: this SDK is being released initially as a ** pre-release** version.
10- Changes might occur which impact applications that use this SDK.
11-
129## Table of Contents
1310
1411<!--
@@ -26,6 +23,8 @@ Changes might occur which impact applications that use this SDK.
2623- [ Overview] ( #overview )
2724- [ Prerequisites] ( #prerequisites )
2825- [ Installation] ( #installation )
26+ * [ Maven] ( #maven )
27+ * [ Gradle] ( #gradle )
2928- [ Using the SDK] ( #using-the-sdk )
3029- [ Questions] ( #questions )
3130- [ Issues] ( #issues )
@@ -41,7 +40,7 @@ The IBM Cloud Code Engine Java SDK allows developers to programmatically interac
4140
4241Service Name | Artifact Coordinates
4342--- | ---
44- [ Code Engine] ( https://cloud.ibm.com/apidocs/codeengine ) | com.ibm.cloud.code-engine:0.3.3
43+ [ Code Engine] ( https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.0 ) | com.ibm.cloud.code-engine:2.0.0
4544
4645## Prerequisites
4746
@@ -52,32 +51,34 @@ Service Name | Artifact Coordinates
5251* Java 8 or above.
5352
5453## Installation
55- The current version of this SDK is: 0.3.3
54+ The current version of this SDK is: 2.0.0
5655
5756Each service's artifact coordinates are listed in the table above.
5857
59- The project artifacts are published on the following public maven repositories:
60- - [ JCenter] ( https://bintray.com/bintray/jcenter ) - For information on how to use the
61- public JCenter maven repository, open [ this link] ( https://bintray.com/bintray/jcenter )
62- then click the ` Set Me Up! ` button.
63- - [ Maven Central] ( https://repo1.maven.org/maven2/ ) - This is the default public repository
64- used by maven when searching for dependencies. To use this repository within your
65- gradle build, please see
58+ The project artifacts are published on the public [ Maven Central] ( https://repo1.maven.org/maven2/ )
59+ artifact repository. This is the default public repository used by maven when searching for dependencies.
60+ To use this repository within a gradle build, please see
6661[ this link] ( https://docs.gradle.org/current/userguide/declaring_repositories.html ) .
6762
6863To use a particular service, define a dependency that contains the
69- artifact coordinates (group id, artifact id and version) for the service, like this:
64+ artifact coordinates (group id, artifact id and version) for the service.
65+ Here are examples for maven and gradle:
7066
71- ##### Maven
67+ ### Maven
7268
7369``` xml
7470<dependency >
7571 <groupId >com.ibm.cloud</groupId >
7672 <artifactId >code-engine</artifactId >
77- <version >0.3.3 </version >
73+ <version >2.0.0 </version >
7874</dependency >
7975```
8076
77+ ### Gradle
78+ ``` gradle
79+ compile 'com.ibm.cloud:code-engine:2.0.0'
80+ ```
81+
8182## Using the SDK
8283Examples and a demo are available in the [ module examples] ( /modules/examples ) folder.
8384
0 commit comments