Skip to content

Commit

Permalink
Update gradle dependency sample
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Sep 16, 2022
1 parent 554f6f9 commit b7dd2e8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ ConfigCat is a <a href="https://configcat.com" target="_blank">hosted feature fl
```
*Gradle:*
```groovy
compile group: 'com.configcat', name: 'configcat-java-client', version: '7.+'
implementation "com.configcat:configcat-java-client:7.+"
```

### 2. Go to the <a href="https://app.configcat.com/sdkkey" target="_blank">ConfigCat Dashboard</a> to get your *SDK Key*:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
api 'commons-codec:commons-codec:1.15'
api 'de.skuzzle:semantic-version:2.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.1.0'
testImplementation 'org.slf4j:slf4j-simple:1.7.32'
testImplementation 'org.slf4j:slf4j-simple:2.0.0'
testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
testImplementation 'org.mockito:mockito-core:4.2.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
Expand Down
6 changes: 3 additions & 3 deletions samples/console/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
}

dependencies {
compile group: 'com.configcat', name: 'configcat-java-client', version: '7.+'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation "com.configcat:configcat-java-client:7.+"
implementation "org.slf4j:slf4j-simple:1.7.25"
testImplementation "junit:junit:4.12"
}
6 changes: 3 additions & 3 deletions samples/web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {
}

dependencies {
compile group: 'com.configcat', name: 'configcat-java-client', version: '7.+'
compile("org.springframework.boot:spring-boot-starter-web:2.2+")
testCompile group: 'junit', name: 'junit', version: '4.12'
implementation "com.configcat:configcat-java-client:7.+"
implementation "org.springframework.boot:spring-boot-starter-web:2.2+"
testImplementation "junit:junit:4.12"
}

0 comments on commit b7dd2e8

Please sign in to comment.