From 274173110bb5e02bb96354de6fadb0248bee045d Mon Sep 17 00:00:00 2001 From: Hannes Achleitner Date: Tue, 27 Dec 2022 23:01:41 +0100 Subject: [PATCH] gradle-nexus-staging-plugin --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 2eceb4ce3..4658231b8 100644 --- a/build.gradle +++ b/build.gradle @@ -4,11 +4,14 @@ buildscript { repositories { google() mavenCentral() + //Needed only for SNAPSHOT versions + maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } dependencies { classpath 'com.android.tools.build:gradle:8.10.1' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0" } }