Skip to content

Commit

Permalink
Upgrade jOOQ version to 3.14.8 along with minor dependency upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianskrobaczrevolut committed Apr 13, 2021
1 parent ecd15a6 commit b19d48f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 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.13.1")
implementation("org.jooq:jooq:3.14.8")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand Down Expand Up @@ -64,7 +64,7 @@ tasks {
}

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

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

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

dependencies {
implementation("org.jooq:jooq:3.13.1")
implementation("org.jooq:jooq:3.14.8")
jdbc("org.postgresql:postgresql:42.2.5")
}
```
Expand Down
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ plugins {
jacoco
`maven-publish`
id("java-gradle-plugin")
id("com.gradle.plugin-publish") version "0.12.0"
id("pl.droidsonroids.jacoco.testkit") version "1.0.7"
id("com.github.ben-manes.versions").version("0.28.0")
id("com.gradle.plugin-publish") version "0.14.0"
id("pl.droidsonroids.jacoco.testkit") version "1.0.8"
id("com.github.ben-manes.versions").version("0.38.0")
}

repositories {
Expand Down Expand Up @@ -111,11 +111,11 @@ afterEvaluate {


dependencies {
implementation("org.jooq:jooq-codegen:3.13.2")
implementation("org.jooq:jooq-codegen:3.14.8")
implementation("org.glassfish.jaxb:jaxb-runtime:2.3.3")
implementation("com.github.docker-java:docker-java-transport-okhttp:3.2.1")
implementation("com.github.docker-java:docker-java-transport-okhttp:3.2.8")
implementation("org.flywaydb:flyway-core:6.4.3")
implementation("org.zeroturnaround:zt-exec:1.11")
implementation("org.zeroturnaround:zt-exec:1.12")
compileOnly("javax.annotation:javax.annotation-api:1.3.2")

testImplementation("org.spockframework:spock-core:1.3-groovy-2.5")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FlywaySchemaVersionProvider : SchemaVersionProvider {
}
}

override fun version(schema: SchemaDefinition): String {
override fun version(schema: SchemaDefinition): String? {
return schema.database.create()
.select(max(field("version")).`as`("max_version"))
.from(table(name(defaultSchemaName.get(), flywayTableName.get())))
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.13.1")
implementation("org.jooq:jooq:3.14.8")
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.13.1")
implementation("org.jooq:jooq:3.14.8")
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.13.1")
"implementation"("org.jooq:jooq:3.14.8")
"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.13.1")
"implementation"("org.jooq:jooq:3.14.8")
"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.13.1")
"implementation"("org.jooq:jooq:3.14.8")
"implementation"("javax.annotation:javax.annotation-api:1.3.2")
}
""")
Expand Down

0 comments on commit b19d48f

Please sign in to comment.