ENT-1871 Rebrand R3Corda to Corda Enterprise (#907)

* Final part of rebranding exercise.

* Fix test.
This commit is contained in:
josecoll 2018-06-02 10:47:31 +01:00 committed by GitHub
parent 400e64b5ed
commit 76644e0d00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -14,8 +14,8 @@ buildscript {
file("$projectDir/constants.properties").withInputStream { constants.load(it) }
// Our version: bump this on release.
ext.corda_release_version = "R3.CORDA-3.0-SNAPSHOT" // "CORDA-3.0-SNAPSHOT" for Corda (Open Source)
ext.corda_release_distribution = "com.r3.corda" // "net.corda" for Corda (Open Source)
ext.corda_release_version = "3.0.0-SNAPSHOT"
ext.corda_release_distribution = "com.r3.corda"
// Increment this on any release that changes public APIs anywhere in the Corda platform
ext.corda_platform_version = constants.getProperty("platformVersion")

View File

@ -8,7 +8,7 @@
# Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
#
gradlePluginsVersion=4.0.20
gradlePluginsVersion=4.0.22
kotlinVersion=1.2.41
platformVersion=4
guavaVersion=21.0

View File

@ -31,7 +31,7 @@ Feature: Startup Information - Logging
Examples:
| Node-Version | Platform-Version | Release-Version |
| r3-master | 4 | R3.CORDA-3.0-SNAPSHOT |
| r3-master | 4 | 3.0.0-SNAPSHOT |
Scenario Outline: Start-up a simple 3 node network with a non validating notary
Given a node PartyA of version <Node1-Version>

View File

@ -42,7 +42,7 @@ sourceCompatibility = 1.6
targetCompatibility = 1.6
task buildCordaJAR(type: FatCapsule, dependsOn: project(':node').compileJava) {
archiveName "corda-r3-${corda_release_version}.jar"
archiveName "corda-enterprise-${corda_release_version}.jar"
applicationClass 'net.corda.node.Corda'
applicationSource = files(
project(':node').configurations.runtime,