From 8b43f839b27118ff5bce2f5cc8fe4f92822c9c6e Mon Sep 17 00:00:00 2001 From: fekt Date: Sun, 29 Oct 2023 14:25:06 -0400 Subject: [PATCH] Testing changes for using SDK package from Gitea/Forgejo --- settings.gradle.kts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 051c6ff..d0eb667 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -13,21 +13,22 @@ dependencyResolutionManagement { repositories { val isRepoRestrictionEnabled = false - mavenLocal() + //Uncomment this to use publishToMavenLocal builds of SDK + //mavenLocal() google() mavenCentral() maven("https://jitpack.io") jcenter() - /* // Uncomment to use a snapshot version of the SDK, e.g. when the SDK version ends in -SNAPSHOT - maven("https://oss.sonatype.org/content/repositories/snapshots") { + maven("http://forgejo.hushpool.is:3000/api/packages/fekt/maven") { + isAllowInsecureProtocol = true if (isRepoRestrictionEnabled) { content { - includeGroup("cash.z.ecc.android") + includeGroup("hush.android") } } - }*/ + } } }