mirror of
https://github.com/jlengrand/exposed-wiki.git
synced 2026-03-10 08:11:18 +00:00
Exposed 0.37.3 + compile -> implementation
This commit is contained in:
@@ -26,17 +26,17 @@
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-core</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-dao</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-jdbc</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-core</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-dao</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-jdbc</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-jodatime</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains.exposed</groupId>
|
||||
<artifactId>exposed-java-time</artifactId>
|
||||
<version>0.34.1</version>
|
||||
<version>0.37.3</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user