From dc9836e8c9f14605f24d1e454b8fcc9ebfaf644a Mon Sep 17 00:00:00 2001 From: davidsjim Date: Thu, 26 Oct 2023 11:57:01 -0600 Subject: [PATCH] Removing references to the fusion-dev repo in the build.gradle --- build.gradle | 30 ----------------------- examples/sample-plugin-stage/build.gradle | 10 -------- 2 files changed, 40 deletions(-) diff --git a/build.gradle b/build.gradle index 69a7a5c..94e5174 100644 --- a/build.gradle +++ b/build.gradle @@ -15,16 +15,6 @@ subprojects { targetCompatibility = 1.8 repositories { - maven { - credentials { - username = "${lucidArtifactoryUsername}" - password = "${lucidArtifactoryPassword}" - } - authentication { - basic(BasicAuthentication) - } - url "https://artifactory.lucidworks.com/artifactory/fusion-dev/" - } mavenCentral() mavenLocal() maven { @@ -37,24 +27,4 @@ subprojects { testImplementation "org.mockito:mockito-core:${mockitoVersion}" } - publishing { - publications { - maven(MavenPublication) { - from components.java - } - } - repositories { - mavenLocal() - maven { - url project.hasProperty('repositoryUrl') ? project.property('repositoryUrl') : '' - credentials { - username project.hasProperty('lucidArtifactoryUsername') ? project.property('lucidArtifactoryUsername') : '' - password project.hasProperty('lucidArtifactoryPassword') ? project.property('lucidArtifactoryPassword') : '' - } - authentication { - basic(BasicAuthentication) - } - } - } - } } diff --git a/examples/sample-plugin-stage/build.gradle b/examples/sample-plugin-stage/build.gradle index 60d104c..bb189e5 100644 --- a/examples/sample-plugin-stage/build.gradle +++ b/examples/sample-plugin-stage/build.gradle @@ -1,16 +1,6 @@ apply plugin: 'java-library' repositories { - maven { - credentials { - username = "${lucidArtifactoryUsername}" - password = "${lucidArtifactoryPassword}" - } - authentication { - basic(BasicAuthentication) - } - url "https://artifactory.lucidworks.com/artifactory/fusion-dev/" - } mavenLocal() mavenCentral() maven {