Correct version strings

This commit is contained in:
Shams Asari 2017-12-11 13:07:29 +00:00
parent 6d6393d984
commit 5b12c5177e
3 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ buildscript {
file("$projectDir/constants.properties").withInputStream { constants.load(it) }
// Our version: bump this on release.
ext.corda_release_version = "3.0-NETWORKMAP-SNAPSHOT"
ext.corda_release_version = "3.0-SNAPSHOT"
// Increment this on any release that changes public APIs anywhere in the Corda platform
ext.corda_platform_version = constants.getProperty("platformVersion")
ext.gradle_plugins_version = constants.getProperty("gradlePluginsVersion")

View File

@ -1,4 +1,4 @@
gradlePluginsVersion=3.0.2-NETWORKMAP
gradlePluginsVersion=3.0.1
kotlinVersion=1.1.60
platformVersion=2
guavaVersion=21.0

View File

@ -15,5 +15,6 @@ interface SSLConfiguration {
interface NodeSSLConfiguration : SSLConfiguration {
val baseDirectory: Path
override val certificatesDirectory: Path get() = baseDirectory / "certificates"
// TODO This will be removed. Instead we will just check against the truststore, which will be provided out-of-band, along with its password
val rootCertFile: Path get() = certificatesDirectory / "rootcert.pem"
}