File tree Expand file tree Collapse 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 Expand file tree Collapse file tree 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.4
4
+ * [ #2 ] ( https://github.com/gradlex-org/java-module-testing/issues/2 ) New approach to split Module Path and Classpath for whitebox testing
5
+ * [ #40 ] ( https://github.com/gradlex-org/java-module-testing/issues/40 ) ` useJUnitJupiter("") ` without version does not fail for empty test directories
6
+ * [ #39 ] ( https://github.com/gradlex-org/java-module-testing/issues/39 ) Add ` TaskLockService ` for conveniently running test tasks in isolation
7
+
3
8
## Version 1.3.1
4
9
* 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.3.1 ")
54
+ implementation("org.gradlex:java-module-testing:1.4 ")
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.3.1 "
7
+ version = " 1.4 "
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.7" )
7
7
implementation(" org.gradlex:java-module-dependencies:1.5.2" )
8
- implementation(" org.gradlex:java-module-testing:1.3.1 " )
8
+ implementation(" org.gradlex:java-module-testing:1.4 " )
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.3.1 " )
6
+ implementation(" org.gradlex:java-module-testing:1.4 " )
7
7
}
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.3.1 " )
6
+ implementation(" org.gradlex:java-module-testing:1.4 " )
7
7
}
You can’t perform that action at this time.
0 commit comments