Skip to content

Commit

Permalink
Bump jooq version in examples to 3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Apr 23, 2017
1 parent 8c0f514 commit 86bbfaa
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ This plugin supports existing and future jOOQ versions. It also supports the dif

```groovy
jooq {
version = '3.9.1' // the default (can be omitted)
version = '3.9.2' // the default (can be omitted)
edition = 'OSS' // the default (can be omitted), other allowed values are PRO, PRO_JAVA_6, and TRIAL
}
```
Expand Down Expand Up @@ -102,7 +102,7 @@ See the [jOOQ XSD](http://www.jooq.org/xsd/jooq-codegen-3.9.0.xsd) for the full

```groovy
jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down
2 changes: 1 addition & 1 deletion example/remove_task_dependency/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
}

jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down
2 changes: 1 addition & 1 deletion example/use_custom_generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
}

jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down
2 changes: 1 addition & 1 deletion example/use_custom_generator/custom-generator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ repositories {
}

dependencies {
compile("org.jooq:jooq-codegen:3.9.1")
compile("org.jooq:jooq-codegen:3.9.2")
}
2 changes: 1 addition & 1 deletion src/main/groovy/nu/studer/gradle/jooq/JooqExtension.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import org.jooq.util.jaxb.Configuration
*/
class JooqExtension {

private static final String DEFAULT_JOOQ_VERSION = "3.9.1"
private static final String DEFAULT_JOOQ_VERSION = "3.9.2"
private static final JooqEdition DEFAULT_JOOQ_EDITION = JooqEdition.OSS

final Closure whenConfigAdded
Expand Down
8 changes: 4 additions & 4 deletions src/test/groovy/nu/studer/gradle/jooq/JooqFuncTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ dependencies {
}
jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down Expand Up @@ -269,7 +269,7 @@ dependencies {
}
jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down Expand Up @@ -307,7 +307,7 @@ dependencies {
}
jooq {
version = '3.9.1'
version = '3.9.2'
edition = 'OSS'
sample(sourceSets.main) {
jdbc {
Expand Down Expand Up @@ -420,7 +420,7 @@ repositories {
}
dependencies {
compile("org.jooq:jooq-codegen:3.9.1")
compile("org.jooq:jooq-codegen:3.9.2")
}
"""
}
Expand Down

0 comments on commit 86bbfaa

Please sign in to comment.