Skip to content

Commit

Permalink
Merged in DNT-836-upgrade-plugin-123-testydupa (pull request #18)
Browse files Browse the repository at this point in the history
DNT-836 Upgrades jooq with new release

* DNT-836 Upgrades jooq with new release


Approved-by: Sergei Kirsanov
Approved-by: Grigorii Alekseev
  • Loading branch information
Kamil Gregorczyk committed Jan 18, 2022
1 parent 189ddda commit d5caca3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repositories {
}

dependencies {
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand Down Expand Up @@ -64,7 +64,7 @@ tasks {
}

dependencies {
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand Down Expand Up @@ -108,7 +108,7 @@ jooq {
}

dependencies {
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
jdbc("mysql:mysql-connector-java:8.0.15")
}
```
Expand Down Expand Up @@ -137,7 +137,7 @@ tasks {
}

dependencies {
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand All @@ -162,7 +162,7 @@ tasks {
}

dependencies {
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ java {
}

group = "com.revolut.jooq"
version = "0.3.7"
version = "0.3.8"

gradlePlugin {
plugins.create("jooqDockerPlugin") {
Expand Down Expand Up @@ -111,7 +111,7 @@ afterEvaluate {


dependencies {
implementation("org.jooq:jooq-codegen:3.14.8")
implementation("org.jooq:jooq-codegen:3.14.15")
implementation("org.glassfish.jaxb:jaxb-runtime:2.3.3")
implementation("com.github.docker-java:docker-java-transport-okhttp:3.2.8")
implementation("org.flywaydb:flyway-core:6.4.3")
Expand Down
10 changes: 5 additions & 5 deletions src/test/groovy/JooqDockerPluginSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ class JooqDockerPluginSpec extends Specification {
dependencies {
jdbc("org.postgresql:postgresql:42.2.5")
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
implementation("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down Expand Up @@ -894,7 +894,7 @@ class JooqDockerPluginSpec extends Specification {
dependencies {
implementation(kotlin("stdlib"))
jdbc("org.postgresql:postgresql:42.2.5")
implementation("org.jooq:jooq:3.14.8")
implementation("org.jooq:jooq:3.14.15")
implementation("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down Expand Up @@ -938,7 +938,7 @@ class JooqDockerPluginSpec extends Specification {
dependencies {
jdbc("org.postgresql:postgresql:42.2.5")
"implementation"("org.jooq:jooq:3.14.8")
"implementation"("org.jooq:jooq:3.14.15")
"implementation"("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down Expand Up @@ -986,7 +986,7 @@ class JooqDockerPluginSpec extends Specification {
dependencies {
jdbc("org.postgresql:postgresql:42.2.5")
"implementation"("org.jooq:jooq:3.14.8")
"implementation"("org.jooq:jooq:3.14.15")
"implementation"("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down Expand Up @@ -1041,7 +1041,7 @@ class JooqDockerPluginSpec extends Specification {
dependencies {
"implementation"(kotlin("stdlib"))
jdbc("org.postgresql:postgresql:42.2.5")
"implementation"("org.jooq:jooq:3.14.8")
"implementation"("org.jooq:jooq:3.14.15")
"implementation"("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down

0 comments on commit d5caca3

Please sign in to comment.