Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build-logic/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
object libs {
object versions {
const val kotlin = "2.1.21"
const val junitJupiter = "5.13.4"
const val junitVintage = "5.13.4"
const val junitPlatform = "1.13.4"
const val junitJupiter = "5.14.0"
const val junitVintage = "5.14.0"
const val junitPlatform = "1.14.0"

const val composeBom = "2025.03.00"
const val androidXMultidex = "2.0.1"
Expand Down
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ object Artifacts {
platform = Java,
groupId = "de.mannodermaus.gradle.plugins",
artifactId = "android-junit5",
currentVersion = "1.13.4.1-SNAPSHOT",
currentVersion = "1.14.0.0-SNAPSHOT",
latestStableVersion = "1.13.4.0",
description = "Unit Testing with JUnit 5 for Android."
)
Expand Down
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Utilities.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fun RepositoryHandler.jitpack() = maven {
}

fun RepositoryHandler.sonatypeSnapshots() = maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
setUrl("https://central.sonatype.com/repository/maven-snapshots")
}

/* Project */
Expand Down
4 changes: 2 additions & 2 deletions instrumentation/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pluginManagement {
setUrl("https://jitpack.io")
}
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
setUrl("https://central.sonatype.com/repository/maven-snapshots")
mavenContent { snapshotsOnly() }
}
}
Expand All @@ -31,7 +31,7 @@ dependencyResolutionManagement {
google()
mavenCentral()
maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
setUrl("https://central.sonatype.com/repository/maven-snapshotss")
mavenContent { snapshotsOnly() }
}
}
Expand Down
1 change: 1 addition & 0 deletions plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Change Log
==========

## Unreleased
- JUnit 5.14.0

## 1.13.4.0 (2025-09-07)
- First considerations for Android Gradle Plugin 9.x
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildscript {
repositories {
google()
mavenCentral()
maven("https://oss.sonatype.org/content/repositories/snapshots") {
maven("https://central.sonatype.com/repository/maven-snapshots") {
mavenContent {
snapshotsOnly()
}
Expand Down Expand Up @@ -58,7 +58,7 @@ if (version != "${androidGradlePluginVersion}") {
repositories {
google()
mavenCentral()
maven("https://oss.sonatype.org/content/repositories/snapshots") {
maven("https://central.sonatype.com/repository/maven-snapshots") {
mavenContent {
snapshotsOnly()
}
Expand Down