From ee9a89fa1504a3acee8131157c535f921275650b Mon Sep 17 00:00:00 2001 From: Dexter Amundsen Date: Mon, 25 Nov 2024 06:03:23 -0800 Subject: [PATCH] remove duplicate repository declarations (#1077) --- annotationProcessor/build.gradle | 24 ------------------------ indexer/build.gradle | 13 ------------- 2 files changed, 37 deletions(-) diff --git a/annotationProcessor/build.gradle b/annotationProcessor/build.gradle index 2c7e15d04..ab765cfad 100644 --- a/annotationProcessor/build.gradle +++ b/annotationProcessor/build.gradle @@ -9,30 +9,6 @@ plugins { sourceCompatibility = JavaVersion.VERSION_17 -repositories { - mavenCentral() - maven { - url 'https://broadinstitute.jfrog.io/broadinstitute/libs-release/' - } - maven { - url 'https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot-local/' - } - maven { - url 'https://packages.confluent.io/maven/' - } - maven { - name 'github' - url 'https://maven.pkg.github.com/vanderbilt/tanagra-client-libraries' - credentials { - // Credentials required to access tanagra-client-libraries, - // GITHUB_ACTOR: user running build task - // GITHUB_TOKEN: user token or workflow token that grants access to libraries - username = System.getenv('GITHUB_ACTOR') - password = System.getenv('GITHUB_TOKEN') - } - } -} - dependencies { implementation project(':underlay') implementation project(':service') diff --git a/indexer/build.gradle b/indexer/build.gradle index 840cc6bb4..e5e652056 100644 --- a/indexer/build.gradle +++ b/indexer/build.gradle @@ -9,19 +9,6 @@ ext { resourceDir = "${projectDir}/src/main/resources" } -repositories { - mavenCentral() - maven { - url 'https://broadinstitute.jfrog.io/broadinstitute/libs-release/' - } - maven { - url 'https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot-local/' - } - maven { - url 'https://packages.confluent.io/maven/' - } -} - dependencies { // added to address snyk warnings constraints {