Skip to content

Commit

Permalink
Version 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed May 22, 2023
1 parent 3037b8e commit 1c2f9fd
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* [#25](https://github.com/gradlex-org/java-module-dependencies/issues/25) Add 'moduleDependencies' help task - similar to 'dependencies' but with Module Names
* [#27](https://github.com/gradlex-org/java-module-dependencies/issues/27) Add task to check scopes of requires directives (by integrating with 'dependency-analysis' plugin)
* [#22](https://github.com/gradlex-org/java-module-dependencies/issues/22) Add task to check ordering (alphabetical) of requires directives
* [#29](https://github.com/gradlex-org/java-module-dependencies/issues/29) Add convenience to enable consistent resolution
* [#30](https://github.com/gradlex-org/java-module-dependencies/issues/30) Add an 'analyse only' mode
* [#23](https://github.com/gradlex-org/java-module-dependencies/issues/23) Consider 'moduleNamePrefixToGroup' entries in: ga(), gav(), moduleName()

## Version 1.2
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.2")
implementation("org.gradlex:java-module-dependencies:1.3")
}
```

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.2"
version = "1.3"

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.2")
implementation("org.gradlex:java-module-dependencies:1.3")
}
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.2")
implementation("org.gradlex:java-module-dependencies:1.3")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.21")
}
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.2")
implementation("org.gradlex:java-module-dependencies:1.3")
}
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.2")
implementation("org.gradlex:java-module-dependencies:1.3")
}

0 comments on commit 1c2f9fd

Please sign in to comment.