Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,20 @@ additions to the SoftLayer API.
<dependency>
<groupId>com.softlayer.api</groupId>
<artifactId>softlayer-api-client</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
</dependency>
```

### Gradle

```groovy
implementation 'com.softlayer.api:softlayer-api-client:0.3.0'
implementation 'com.softlayer.api:softlayer-api-client:0.3.1'
```

### Kotlin

```kotlin
compile("com.softlayer.api:softlayer-api-client:0.3.0")
compile("com.softlayer.api:softlayer-api-client:0.3.1")
```

### Creating a Client
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>softlayer-api-client-examples</artifactId>
<packaging>jar</packaging>
<!-- Please keep version in sync with README -->
<version>0.3.0</version>
<version>0.3.1</version>
<name>softlayer-api-client-examples</name>
<url>http://sldn.softlayer.com</url>
<licenses>
Expand Down
4 changes: 2 additions & 2 deletions gen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>softlayer-api-client-gen</artifactId>
<packaging>jar</packaging>
<!-- Please keep version in sync with README -->
<version>0.3.0</version>
<version>0.3.1</version>
<name>softlayer-api-client-gen</name>
<url>http://sldn.softlayer.com</url>
<licenses>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down
15 changes: 7 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>softlayer-api-client</artifactId>
<packaging>jar</packaging>
<!-- Please keep version in sync with README -->
<version>0.3.0</version>
<version>0.3.1</version>
<name>SoftLayer API Client for Java</name>
<description>API client for accessing the SoftLayer API</description>
<url>http://sldn.softlayer.com</url>
Expand All @@ -27,9 +27,8 @@
<developer>
<id>camporter</id>
<name>Cameron Porter</name>
<email>cmporter@softlayer.com</email>
<organization>SoftLayer</organization>
<organizationUrl>http://softlayer.com</organizationUrl>
<organization>IBM</organization>
<organizationUrl>http://ibm.com/cloud</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
Expand All @@ -41,7 +40,7 @@
<connection>scm:git:git@github.com:softlayer/softlayer-java.git</connection>
<developerConnection>scm:git:git@github.com:softlayer/softlayer-java.git</developerConnection>
<url>git@github.com:softlayer/softlayer-java.git</url>
<tag>0.3.0</tag>
<tag>0.3.1</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -50,7 +49,7 @@
<repositories>
<repository>
<id>jcenter</id>
<url>http://jcenter.bintray.com/</url>
<url>https://jcenter.bintray.com/</url>
</repository>
</repositories>
<distributionManagement>
Expand All @@ -67,7 +66,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -78,7 +77,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.3.3</version>
<version>3.6.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down