File tree Expand file tree Collapse file tree 6 files changed +10
-9
lines changed
build-logic/src/main/kotlin
android-junit5/src/test/resources/test-projects Expand file tree Collapse file tree 6 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 3
3
object libs {
4
4
object versions {
5
5
const val kotlin = " 2.1.21"
6
- const val junitJupiter = " 5.13.4 "
7
- const val junitVintage = " 5.13.4 "
8
- const val junitPlatform = " 1.13.4 "
6
+ const val junitJupiter = " 5.14.0 "
7
+ const val junitVintage = " 5.14.0 "
8
+ const val junitPlatform = " 1.14.0 "
9
9
10
10
const val composeBom = " 2025.03.00"
11
11
const val androidXMultidex = " 2.0.1"
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ object Artifacts {
93
93
platform = Java ,
94
94
groupId = " de.mannodermaus.gradle.plugins" ,
95
95
artifactId = " android-junit5" ,
96
- currentVersion = " 1.13.4.1 -SNAPSHOT" ,
96
+ currentVersion = " 1.14.0.0 -SNAPSHOT" ,
97
97
latestStableVersion = " 1.13.4.0" ,
98
98
description = " Unit Testing with JUnit 5 for Android."
99
99
)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ fun RepositoryHandler.jitpack() = maven {
15
15
}
16
16
17
17
fun RepositoryHandler.sonatypeSnapshots () = maven {
18
- setUrl(" https://oss .sonatype.org/content/repositories/ snapshots" )
18
+ setUrl(" https://central .sonatype.com/repository/maven- snapshots" )
19
19
}
20
20
21
21
/* Project */
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ pluginManagement {
20
20
setUrl(" https://jitpack.io" )
21
21
}
22
22
maven {
23
- setUrl(" https://oss .sonatype.org/content/repositories/ snapshots" )
23
+ setUrl(" https://central .sonatype.com/repository/maven- snapshots" )
24
24
mavenContent { snapshotsOnly() }
25
25
}
26
26
}
@@ -31,7 +31,7 @@ dependencyResolutionManagement {
31
31
google()
32
32
mavenCentral()
33
33
maven {
34
- setUrl(" https://oss .sonatype.org/content/repositories/snapshots " )
34
+ setUrl(" https://central .sonatype.com/repository/maven-snapshotss " )
35
35
mavenContent { snapshotsOnly() }
36
36
}
37
37
}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Change Log
2
2
==========
3
3
4
4
## Unreleased
5
+ - JUnit 5.14.0
5
6
6
7
## 1.13.4.0 (2025-09-07)
7
8
- First considerations for Android Gradle Plugin 9.x
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ buildscript {
22
22
repositories {
23
23
google()
24
24
mavenCentral()
25
- maven("https://oss .sonatype.org/content/repositories/ snapshots") {
25
+ maven("https://central .sonatype.com/repository/maven- snapshots") {
26
26
mavenContent {
27
27
snapshotsOnly()
28
28
}
@@ -58,7 +58,7 @@ if (version != "${androidGradlePluginVersion}") {
58
58
repositories {
59
59
google()
60
60
mavenCentral()
61
- maven("https://oss .sonatype.org/content/repositories/ snapshots") {
61
+ maven("https://central .sonatype.com/repository/maven- snapshots") {
62
62
mavenContent {
63
63
snapshotsOnly()
64
64
}
You can’t perform that action at this time.
0 commit comments