Skip to content

Commit 2b9afee

Browse files
committed
Add changelog entry
1 parent 9a6801b commit 2b9afee

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Java Module Testing Gradle Plugin - Changelog
22

3+
## Version 1.8.1
4+
* [#172](https://github.com/gradlex-org/java-module-testing/issues/172) Fix incompatibility with Gradle 9.5.0+
5+
36
## Version 1.8
47
* [#143](https://github.com/gradlex-org/java-module-testing/issues/143) Fully support other source sets than 'main' in whitebox tests
58
* [#114](https://github.com/gradlex-org/java-module-testing/issues/114) Fix: issue where the plugin causes a 'mutating a configuration after it has been resolved' error

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ publishingConventions {
1515
}
1616
}
1717

18-
// 9.4.1 as version where 'JavaModuleDetector' is a class and not an interface (changes in 9.6.0)
18+
// 9.4.1 is the last version where 'JavaModuleDetector' is a class and not an interface
1919
testingConventions { testGradleVersions("7.4", "7.6.5", "8.0.2", "8.14.2", "9.4.1") }

src/main/java/org/gradlex/javamodule/testing/internal/actions/JavaCompileSetModulePathAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void execute(Task task) {
3939

4040
/**
4141
* Use reflective access for JavaModuleDetector methods so that it does not matter if JavaModuleDetector is a
42-
* class (<9.5.0) or an interface (>9.5.0).
42+
* class (<9.5.0) or an interface (9.5.0+).
4343
*/
4444
private FileCollection infer(String pathType, FileCollection classpathAndModulePath) {
4545
try {

0 commit comments

Comments
 (0)