Skip to content

Commit 54f51dc

Browse files
committed
Revert stable plugin version & add Maven Central to instrumentation modules
1 parent d99f34e commit 54f51dc

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

buildSrc/src/main/kotlin/Artifacts.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ object Artifacts {
4747
platform = Java,
4848
groupId = "de.mannodermaus.gradle.plugins",
4949
artifactId = "android-junit5",
50-
currentVersion = "1.7.1.1-SNAPSHOT",
51-
latestStableVersion = "1.7.1.0",
50+
currentVersion = "1.7.1.1",
51+
latestStableVersion = "1.7.0.0",
5252
license = license,
5353
description = "Unit Testing with JUnit 5 for Android."
5454
)
@@ -58,7 +58,7 @@ object Artifacts {
5858
*/
5959
object Instrumentation {
6060
private val groupId = "de.mannodermaus.junit5"
61-
private val currentVersion = "1.2.1"
61+
private val currentVersion = "1.2.1-SNAPSHOT"
6262
val latestStableVersion = "1.2.0"
6363

6464
val Core = Deployed(

instrumentation/runner/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
55
buildscript {
66
repositories {
77
google()
8-
jcenter()
8+
mavenCentral()
99
sonatypeSnapshots()
10+
jcenter()
1011
}
1112

1213
dependencies {

instrumentation/sample/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmOptions
55
buildscript {
66
repositories {
77
google()
8+
mavenCentral()
9+
sonatypeSnapshots()
810
jcenter()
9-
maven("https://oss.sonatype.org/content/repositories/snapshots")
1011
}
1112

1213
dependencies {

0 commit comments

Comments
 (0)