Skip to content

Commit

Permalink
Removed artifactory references from repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelnenov-r3 committed Apr 16, 2024
1 parent 60689ac commit 8ce7886
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 34 deletions.
20 changes: 0 additions & 20 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 {
Expand Down
4 changes: 0 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 0 additions & 10 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8ce7886

Please sign in to comment.