File tree 6 files changed +10
-5
lines changed
use-all-java-module-plugins/build-logic
use-only-java-module-testing-plugin/build-logic
use-with-test-fixtures/build-logic
6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Java Module Testing Gradle Plugin - Changelog
2
2
3
+ ## Version 1.6.1
4
+ * Use all test src folders in compilation (if there are more than one)
5
+ * Only add class folders that exist to the '--patch-module' argument
6
+ * Only perform 'extendsFrom(compileOnly)' if not already done
7
+
3
8
## Version 1.6
4
9
* [ #85 ] ( https://github.com/gradlex-org/java-module-testing/issues/85 ) Further improve interoperability with ` java-module-dependencies ` plugin
5
10
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Add this to the build file of your convention plugin's build
51
51
52
52
```
53
53
dependencies {
54
- implementation("org.gradlex:java-module-testing:1.6")
54
+ implementation("org.gradlex:java-module-testing:1.6.1 ")
55
55
}
56
56
```
57
57
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
4
4
}
5
5
6
6
group = " org.gradlex"
7
- version = " 1.6"
7
+ version = " 1.6.1 "
8
8
9
9
java {
10
10
sourceCompatibility = JavaVersion .VERSION_1_8
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ plugins {
5
5
dependencies {
6
6
implementation(" org.gradlex:extra-java-module-info:1.12" )
7
7
implementation(" org.gradlex:java-module-dependencies:1.8.1" )
8
- implementation(" org.gradlex:java-module-testing:1.6" )
8
+ implementation(" org.gradlex:java-module-testing:1.6.1 " )
9
9
}
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ plugins {
3
3
}
4
4
5
5
dependencies {
6
- implementation(" org.gradlex:java-module-testing:1.6" )
6
+ implementation(" org.gradlex:java-module-testing:1.6.1 " )
7
7
}
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ plugins {
3
3
}
4
4
5
5
dependencies {
6
- implementation(" org.gradlex:java-module-testing:1.6" )
6
+ implementation(" org.gradlex:java-module-testing:1.6.1 " )
7
7
implementation(" org.gradlex:java-module-dependencies:1.8.1" )
8
8
}
You can’t perform that action at this time.
0 commit comments