Skip to content

Commit 0bb17f4

Browse files
committed
Release version 0.2.7
1 parent 1ab674f commit 0bb17f4

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

README.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,34 @@ servers and may charge your account.
2727

2828
## Using
2929

30-
To add the project you your Maven project, add the dependency:
30+
Add the library as a dependency using your favorite build tooling.
31+
32+
Note that the published client library is built upon the state of the API at the time of the version's release.
33+
It will contain the generated artifacts as of that time only.
34+
See "Building" for more information on how to regenerate the artifacts to get regular
35+
additions to the SoftLayer API.
36+
37+
### Maven
3138

3239
```xml
3340
<dependency>
3441
<groupId>com.softlayer.api</groupId>
3542
<artifactId>softlayer-api-client</artifactId>
36-
<version>0.2.6</version>
43+
<version>0.2.7</version>
3744
</dependency>
3845
```
3946

40-
Note, the client published to Maven is built upon version change of this project. It will contain the generated
41-
artifacts as of that time only. See "Building" for more information on how to regenerate the artifacts to get regular
42-
additions to the SoftLayer API.
47+
### Gradle
48+
49+
```groovy
50+
implementation 'com.softlayer.api:softlayer-api-client:0.2.7'
51+
```
52+
53+
### Kotlin
54+
55+
```kotlin
56+
compile("com.softlayer.api:softlayer-api-client:0.2.7")
57+
```
4358

4459
### Creating a Client
4560

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-examples</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.6</version>
8+
<version>0.2.7</version>
99
<name>softlayer-api-client-examples</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>

gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>softlayer-api-client-gen</artifactId>
66
<packaging>jar</packaging>
77
<!-- Please keep version in sync with README -->
8-
<version>0.2.6</version>
8+
<version>0.2.7</version>
99
<name>softlayer-api-client-gen</name>
1010
<url>http://sldn.softlayer.com</url>
1111
<licenses>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<artifactId>softlayer-api-client</artifactId>
55
<packaging>jar</packaging>
66
<!-- Please keep version in sync with README -->
7-
<version>0.2.6</version>
7+
<version>0.2.7</version>
88
<name>SoftLayer API Client for Java</name>
99
<description>API client for accessing the SoftLayer API</description>
1010
<url>http://sldn.softlayer.com</url>
@@ -41,7 +41,7 @@
4141
<connection>scm:git:git@github.com:softlayer/softlayer-java.git</connection>
4242
<developerConnection>scm:git:git@github.com:softlayer/softlayer-java.git</developerConnection>
4343
<url>git@github.com:softlayer/softlayer-java.git</url>
44-
<tag>0.2.6</tag>
44+
<tag>0.2.7</tag>
4545
</scm>
4646
<properties>
4747
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)