Skip to content

Commit

Permalink
Version 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Feb 22, 2024
1 parent e31f082 commit a83677b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Java Module Dependencies Gradle Plugin - Changelog

## Version 1.6.2
* [#90](https://github.com/gradlex-org/java-module-dependencies/issues/90) Fix: 'moduleNamePrefixToGroup' mapping uses best fit instead of first match
* [#91](https://github.com/gradlex-org/java-module-dependencies/issues/91) Fix: handle duplicated module names in 'extra-module-info' bridge

## Version 1.6.1
* Fix in setup of new utility tasks

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

```
dependencies {
implementation("org.gradlex:java-module-dependencies:1.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.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.6.1"
version = "1.6.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.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.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.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.2")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ plugins {

dependencies {
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:1.21.0")
implementation("org.gradlex:java-module-dependencies:1.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.2")
implementation("org.gradlex:java-module-testing:1.2.1")
}
2 changes: 1 addition & 1 deletion samples/module-info-dsl/gradle/plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ plugins {

dependencies {
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:1.21.0")
implementation("org.gradlex:java-module-dependencies:1.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.2")
implementation("org.gradlex:java-module-testing:1.2.1")
}
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.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.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.6.1")
implementation("org.gradlex:java-module-dependencies:1.6.2")
}

0 comments on commit a83677b

Please sign in to comment.