From 0e691ba1206bbddbbf39a7a9c0cccfbdc64b81db Mon Sep 17 00:00:00 2001 From: "Andrey.Tarashevskiy" Date: Wed, 29 Dec 2021 13:00:59 +0300 Subject: [PATCH] Exposed 0.37.3 + compile -> implementation --- Getting-Started.md | 14 +++++++------- LibDocumentation.md | 26 +++++++++++++------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Getting-Started.md b/Getting-Started.md index 0840c39..992cc22 100644 --- a/Getting-Started.md +++ b/Getting-Started.md @@ -26,17 +26,17 @@ org.jetbrains.exposed exposed-core - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-dao - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-jdbc - 0.34.1 + 0.37.3 @@ -55,9 +55,9 @@ repositories { jcenter() } dependencies { - compile("org.jetbrains.exposed", "exposed-core", "0.34.1") - compile("org.jetbrains.exposed", "exposed-dao", "0.34.1") - compile("org.jetbrains.exposed", "exposed-jdbc", "0.34.1") + implementation("org.jetbrains.exposed", "exposed-core", "0.37.3") + implementation("org.jetbrains.exposed", "exposed-dao", "0.37.3") + implementation("org.jetbrains.exposed", "exposed-jdbc", "0.37.3") } ``` @@ -75,7 +75,7 @@ dependencies { And the version in your `gradle.properties` ``` -exposedVersion=0.34.1 +exposedVersion=0.37.3 ``` - Note: There are another modules. Detailed information located in [[Modules Documentation|LibDocumentation]] section. diff --git a/LibDocumentation.md b/LibDocumentation.md index db9b748..25e56f5 100644 --- a/LibDocumentation.md +++ b/LibDocumentation.md @@ -55,13 +55,13 @@ To add `Exposed` framework of that version you had to use: #### Gradle Groovy ```groovy dependencies { - compile 'org.jetbrains.exposed:exposed:0.17.7' + implementation 'org.jetbrains.exposed:exposed:0.17.7' } ``` #### Gradle Kotlin DSL ```kotlin dependencies { - compile("org.jetbrains.exposed", "exposed", "0.17.7") + implementation("org.jetbrains.exposed", "exposed", "0.17.7") } ``` @@ -83,27 +83,27 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous org.jetbrains.exposed exposed-core - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-dao - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-jdbc - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-jodatime - 0.34.1 + 0.37.3 org.jetbrains.exposed exposed-java-time - 0.34.1 + 0.37.3 @@ -112,12 +112,12 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous #### Gradle Groovy ```groovy dependencies { - compile 'org.jetbrains.exposed:exposed-core:0.34.1' - compile 'org.jetbrains.exposed:exposed-dao:0.34.1' - compile 'org.jetbrains.exposed:exposed-jdbc:0.34.1' - compile 'org.jetbrains.exposed:exposed-jodatime:0.34.1' + implementation 'org.jetbrains.exposed:exposed-core:0.37.3' + implementation 'org.jetbrains.exposed:exposed-dao:0.37.3' + implementation 'org.jetbrains.exposed:exposed-jdbc:0.37.3' + implementation 'org.jetbrains.exposed:exposed-jodatime:0.37.3' // or - compile 'org.jetbrains.exposed:exposed-java-time:0.34.1' + implementation 'org.jetbrains.exposed:exposed-java-time:0.37.3' } ``` #### Gradle Kotlin DSL @@ -135,7 +135,7 @@ dependencies { ``` and in `gradle.properties` ``` -exposedVersion=0.34.1 +exposedVersion=0.37.3 ``` ### JDBC driver and logging