Skip to content

Commit

Permalink
Update references to plugin version 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Dec 29, 2022
1 parent c633974 commit b3e263e
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ Apply the `nu.studer.jooq` plugin to your Gradle project.

```groovy
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
}
```

### Gradle Kotlin DSL

```kotlin
plugins {
id("nu.studer.jooq") version "7.1.1"
id("nu.studer.jooq") version "7.2"
}
```

Expand Down
2 changes: 1 addition & 1 deletion example/configure_custom_generator_strategy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_generation_tool_execution/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import java.util.concurrent.atomic.AtomicReference

plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_jooq_config_normalization/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import nu.studer.gradle.jooq.JooqEdition
plugins {
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_jooq_with_flyway/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'org.flywaydb.flyway' version '6.5.6'
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_jvm_args/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_task_dependencies/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_toolchain_gradle_dsl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/configure_toolchain_kotlin_dsl/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("nu.studer.jooq") version "7.1.1"
id("nu.studer.jooq") version "7.2"
id("java")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ repositories {
}

dependencies {
implementation 'nu.studer:gradle-jooq-plugin:7.1.1'
implementation 'nu.studer:gradle-jooq-plugin:7.2'
}
2 changes: 1 addition & 1 deletion example/extract_script_file/jooq.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'nu.studer:gradle-jooq-plugin:7.1.1'
classpath 'nu.studer:gradle-jooq-plugin:7.2'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/use_groovy_dsl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nu.studer.gradle.jooq.JooqEdition

plugins {
id 'nu.studer.jooq' version '7.1.1'
id 'nu.studer.jooq' version '7.2'
id 'java'
}

Expand Down
2 changes: 1 addition & 1 deletion example/use_kotlin_dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jooq.meta.jaxb.ForcedType
import org.jooq.meta.jaxb.Property

plugins {
id("nu.studer.jooq") version "7.1.1"
id("nu.studer.jooq") version "7.2"
id("java")
}

Expand Down

0 comments on commit b3e263e

Please sign in to comment.