Skip to content

Commit

Permalink
Increase version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Nov 14, 2022
1 parent e0329bb commit 604eb90
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Java Module Dependencies Gradle Plugin - Changelog

## Version 1.2
* [#20](https://github.com/gradlex-org/java-module-dependencies/issues/20) Improve support for `requires /*runtime*/`

## Version 1.1
* [#19](https://github.com/gradlex-org/java-module-dependencies/issues/19) Support for `requires /*runtime*/`

Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Add this to the build file of your convention plugin's build

```
dependencies {
implementation("org.gradlex:java-module-dependencies:1.1")
implementation("org.gradlex:java-module-dependencies:1.2")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "org.gradlex"
version = "1.1"
version = "1.2"

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion samples/configuration-cache/build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("org.gradlex:java-module-dependencies:1.1")
implementation("org.gradlex:java-module-dependencies:1.2")
}
2 changes: 1 addition & 1 deletion samples/kotlin/build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ plugins {
}

dependencies {
implementation("org.gradlex:java-module-dependencies:1.1")
implementation("org.gradlex:java-module-dependencies:1.2")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
}
2 changes: 1 addition & 1 deletion samples/versions-in-catalog/build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("org.gradlex:java-module-dependencies:1.1")
implementation("org.gradlex:java-module-dependencies:1.2")
}
2 changes: 1 addition & 1 deletion samples/versions-in-platform/build-logic/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ plugins {
}

dependencies {
implementation("org.gradlex:java-module-dependencies:1.1")
implementation("org.gradlex:java-module-dependencies:1.2")
}
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ class RequiresRuntimeTest extends Specification {
}
dependencies.constraints {
javaModuleDependencies {
implementation(gav("org.slf4j", "2.0.3"))
Expand Down

0 comments on commit 604eb90

Please sign in to comment.