File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,11 @@ Packages are hosted on GitHub. [Authentication](https://docs.github.com/en/packa
4646### Gradle
4747``` groovy
4848dependencies {
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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+ ```
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments