Forum chevron_right Announcements chevron_right Artifactory repositories for CorDapp developers becoming private

  • Creator
    Topic
  • #13091
    Daniela Bentrup
    Keymaster

    Hi everyone,
    We would like to inform you that a number of public Artifactory repositories for CorDapp developers will become private, and this may affect your ability to build your projects. These repositories should not be used in projects going forward.

    What does it mean for your build?
    To ensure the successful build of your project that relies on Artifactory repositories, please make the following update in your project’s build files. The location of the repository declaration may vary depending on the project structure and Gradle version. It could be present in either the build.gradle file or the settings.gradle file of a repository. Please apply these changes as appropriate to ensure the continued functioning of your project:

    Existing code:
    maven {
        url "https://software.r3.com/artifactory/corda-dependencies"
    }

    Updated code:
    maven {
        url "https://download.corda.net/maven/corda-dependencies"
    }

    Note: corda-dependencies is just one example of a repo, any build code which references https://software.r3.com/artifactory must be updated in the same manner swapping https://software.r3.com/artifactory/ to https://download.corda.net/maven/ and keeping the existing repository name.

    If your build used /corda please make sure to use the following two repositories:

    maven {
        url "https://download.corda.net/maven/corda-releases"
    }

    maven {
        url "https://download.corda.net/maven/corda-dependencies"
    }

    When will this change be made?
    The Maven repository on https://download.corda.net/maven/corda-dependencies/ is available now.
    The Artifactory repositories will become unavailable on 31st July 2023.

  • The forum ‘Announcements’ is closed to new topics and replies.

Subscribe to our newsletter to stay up to date on the latest developer news, tools, and articles.