mirror of
https://github.com/corda/corda.git
synced 2024-12-20 21:43:14 +00:00
Correct version strings
This commit is contained in:
parent
6d6393d984
commit
5b12c5177e
@ -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")
|
||||
|
@ -1,4 +1,4 @@
|
||||
gradlePluginsVersion=3.0.2-NETWORKMAP
|
||||
gradlePluginsVersion=3.0.1
|
||||
kotlinVersion=1.1.60
|
||||
platformVersion=2
|
||||
guavaVersion=21.0
|
||||
|
@ -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"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user