diff --git a/build.gradle b/build.gradle index 0029c953..2a4ec7b6 100644 --- a/build.gradle +++ b/build.gradle @@ -36,10 +36,6 @@ allprojects { cordaRuntimePluginWorkspaceDir = "workspace" cordaBinDir = "${System.getProperty("user.home")}/.corda/corda5" cordaCliBinDir = "${System.getProperty("user.home")}/.corda/cli" - - // Only need to supply these if you want to use an unpublished version - artifactoryUsername = findProperty('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME') - artifactoryPassword = findProperty('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD') } // Declare the set of Kotlin compiler options we need to build a CorDapp. @@ -73,22 +69,6 @@ allprojects { // All dependencies are held in Maven Central mavenLocal() mavenCentral() - - // R3 Internal repositories for dev - // Repository provides Corda 5 binaries that implement Corda-API. - // These will be made publicly available. - // Final location to be decided. - // Repository subject to change - maven { - url = "$artifactoryContextUrl/corda-os-maven" - authentication { - basic(BasicAuthentication) - } - credentials { - username = findProperty('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME') - password = findProperty('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD') - } - } } tasks.withType(Test).configureEach { diff --git a/gradle.properties b/gradle.properties index 51fb3f11..dc9c2655 100644 --- a/gradle.properties +++ b/gradle.properties @@ -71,7 +71,3 @@ vnodeRegistrationTimeoutDefault=30000 # False by default, will execute the tests every time you stand the template up - gives extra protection # Set to true to skip the tests, making the launching process quicker. You will be responsible for running workflow tests yourself skipTestsDuringBuildCpis=false - -# R3 internal repository -# Use this version when pointing to artefacts in artifactory that have not been published to S3 -artifactoryContextUrl=https://software.r3.com/artifactory diff --git a/settings.gradle b/settings.gradle index e2445064..1db05414 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,16 +4,6 @@ pluginManagement { gradlePluginPortal() mavenCentral() mavenLocal() - maven { - url = "$artifactoryContextUrl/corda-os-maven" - authentication { - basic(BasicAuthentication) - } - credentials { - username = settings.ext.find('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME') - password = settings.ext.find('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD') - } - } } // The plugin dependencies with versions of the plugins congruent with the specified CorDapp plugin version,