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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
<dependency>
<groupId>com.devcycle</groupId>
<artifactId>java-server-sdk</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -27,7 +27,7 @@ You can use the SDK in your Maven project by adding the following to your *pom.x
Alternatively you can use the SDK in your Gradle project by adding the following to *build.gradle*:

```yaml
implementation("com.devcycle:java-server-sdk:1.0.3")
implementation("com.devcycle:java-server-sdk:1.0.4")
```

## DNS Caching
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ signing {

group = 'com.devcycle'
archivesBaseName = "java-server-sdk"
version = '1.0.3'
version = '1.0.4'

uploadArchives {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {

compileOnly("org.projectlombok:lombok:1.18.22")

implementation("com.devcycle:java-server-sdk:1.0.3")
implementation("com.devcycle:java-server-sdk:1.0.4")

testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<dependency>
<groupId>com.devcycle</groupId>
<artifactId>java-server-sdk</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
</dependencies>

Expand Down