diff --git a/build.gradle b/build.gradle index 2ac35553c3..b510628506 100644 --- a/build.gradle +++ b/build.gradle @@ -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") diff --git a/constants.properties b/constants.properties index d723fb9113..59e8955332 100644 --- a/constants.properties +++ b/constants.properties @@ -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 diff --git a/experimental/behave/src/scenario/resources/features/startup/logging.feature b/experimental/behave/src/scenario/resources/features/startup/logging.feature index 0e0138becc..ada77a05b3 100644 --- a/experimental/behave/src/scenario/resources/features/startup/logging.feature +++ b/experimental/behave/src/scenario/resources/features/startup/logging.feature @@ -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 diff --git a/node/capsule/build.gradle b/node/capsule/build.gradle index e95ed564de..5bd5889185 100644 --- a/node/capsule/build.gradle +++ b/node/capsule/build.gradle @@ -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,