File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
build-logic/src/main/kotlin Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ object Artifacts {
106106 platform = Java ,
107107 groupId = " de.mannodermaus.gradle.plugins" ,
108108 artifactId = " android-junit5" ,
109- currentVersion = " 2.0.0-SNAPSHOT " ,
109+ currentVersion = " 2.0.0" ,
110110 latestStableVersion = " 1.14.0.0" ,
111111 description = " Unit Testing with the JUnit Framework for Android."
112112 )
@@ -116,8 +116,8 @@ object Artifacts {
116116 */
117117 object Instrumentation {
118118 const val groupId = " de.mannodermaus.junit5"
119- private const val currentVersion = " 2.0.0 "
120- private const val latestStableVersion = " 1.9 .0"
119+ private const val currentVersion = " 2.0.1-SNAPSHOT "
120+ private const val latestStableVersion = " 2.0 .0"
121121
122122 val Core = Deployed (
123123 platform = Android (minSdk = 19 ),
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ Change Log
33
44## Unreleased
55
6+ ## 2.0.0 (2025-12-31)
7+
68- Removed deprecated ` runComposeTest ` API from ` ComposeExtension `
79- Update to Kotlin 2.3
810- Update to Compose 1.10
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ Change Log
22==========
33
44## Unreleased
5+
6+ ## 2.0.0 (2025-12-31)
57- Update to Kotlin 2.3
68- Internal: Replace deprecated ` OutputDirectoryProvider ` with its correct replacement
79- Support instrumentation with JUnit 5 and 6 (the plugin will choose the correct runtime accordingly)
Original file line number Diff line number Diff line change @@ -39,6 +39,12 @@ kotlin { explicitApi() }
3939gradlePlugin {
4040 plugins {
4141 register(" plugin" ) {
42+ id = " de.mannodermaus.android-junit"
43+ implementationClass = " de.mannodermaus.gradle.plugins.junit5.AndroidJUnitPlatformPlugin"
44+ }
45+
46+ // Old plugin ID
47+ register(" plugin2" ) {
4248 id = " de.mannodermaus.android-junit5"
4349 implementationClass = " de.mannodermaus.gradle.plugins.junit5.AndroidJUnitPlatformPlugin"
4450 }
You can’t perform that action at this time.
0 commit comments