Skip to content

Commit 8a1d026

Browse files
authored
Merge pull request #83 from YektaDev/patch-1
Replace deprecated gradle configurations
2 parents 8d23452 + c738e83 commit 8a1d026

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ Packages are hosted on GitHub. [Authentication](https://docs.github.com/en/packa
4646
### Gradle
4747
```groovy
4848
dependencies {
49-
compile "nl.myndocs:oauth2-server-core:$myndocs_oauth_version"
49+
implementation "nl.myndocs:oauth2-server-core:$myndocs_oauth_version"
5050
// In memory dependencies
51-
compile "nl.myndocs:oauth2-server-client-inmemory:$myndocs_oauth_version"
52-
compile "nl.myndocs:oauth2-server-identity-inmemory:$myndocs_oauth_version"
53-
compile "nl.myndocs:oauth2-server-token-store-inmemory:$myndocs_oauth_version"
51+
implementation "nl.myndocs:oauth2-server-client-inmemory:$myndocs_oauth_version"
52+
implementation "nl.myndocs:oauth2-server-identity-inmemory:$myndocs_oauth_version"
53+
implementation "nl.myndocs:oauth2-server-token-store-inmemory:$myndocs_oauth_version"
5454
}
5555
```
5656

docs/http4k.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
### Gradle
1515
```groovy
16-
compile "nl.myndocs:oauth2-server-http4k:$myndocs_oauth_version"
16+
implementation "nl.myndocs:oauth2-server-http4k:$myndocs_oauth_version"
1717
```
1818

1919

docs/javalin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
### Gradle
1515
```groovy
16-
compile "nl.myndocs:oauth2-server-javalin:$myndocs_oauth_version"
16+
implementation "nl.myndocs:oauth2-server-javalin:$myndocs_oauth_version"
1717
```
1818

1919
## Implementation

docs/ktor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
### Gradle
1515
```groovy
16-
compile "nl.myndocs:oauth2-server-ktor:$myndocs_oauth_version"
16+
implementation "nl.myndocs:oauth2-server-ktor:$myndocs_oauth_version"
1717
```
1818

1919
## Implementation
@@ -41,4 +41,4 @@ embeddedServer(Netty, 8080) {
4141
tokenStore = InMemoryTokenStore()
4242
}
4343
}.start(wait = true)
44-
```
44+
```

docs/sparkjava.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
### Gradle
1515
```groovy
16-
compile "nl.myndocs:oauth2-server-sparkjava:$myndocs_oauth_version"
16+
implementation "nl.myndocs:oauth2-server-sparkjava:$myndocs_oauth_version"
1717
```
1818

1919
## Implementation

0 commit comments

Comments
 (0)