Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-15313: release prep for GA-RC10 #94

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ allprojects {
cordaDbContainerName = "CSDEpostgresql"
cordaBinDir = "${System.getProperty("user.home")}/.corda/corda5"
cordaCliBinDir = "${System.getProperty("user.home")}/.corda/cli"
cpiUploadTimeout = cpiUploadDefault
}

// Declare the set of Kotlin compiler options we need to build a CorDapp.
Expand Down
8 changes: 0 additions & 8 deletions contracts/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ dependencies {
// The CorDapp uses the slf4j logging framework. Corda-API provides this so we need a 'cordaProvided' declaration.
cordaProvided 'org.slf4j:slf4j-api'

// This are shared so should be here.
// Dependencies Required By Test Tooling
// Todo: these are commented out as the simulator UTXO work has not been merged into Gecko yet.
// testImplementation "net.corda:corda-simulator-api:$simulatorVersion"
// testRuntimeOnly "net.corda:corda-simulator-runtime:$simulatorVersion"

// 3rd party libraries
// Required
testImplementation "org.slf4j:slf4j-simple:2.0.0"
Expand All @@ -55,8 +49,6 @@ dependencies {
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "org.hamcrest:hamcrest-library:$hamcrestVersion"
testImplementation "com.r3.corda.ledger.utxo:contract-testing:$contractTestingVersion"
testImplementation "com.r3.corda.ledger.utxo:contract-testing-kotlin:$contractTestingVersion"
}

// The CordApp section.
Expand Down

This file was deleted.

This file was deleted.

10 changes: 2 additions & 8 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ kotlin.code.style=official

# Specify the version of the Corda-API to use.
# This needs to match the version supported by the Corda Cluster the CorDapp will run on.
cordaApiVersion=5.0.0.763-Iguana1.0
cordaApiVersion=5.0.0.765-GA-RC10

# Specify the version of the notary plugins to use.
# Currently packaged as part of corda-runtime-os, so should be set to a corda-runtime-os version.
Expand All @@ -15,7 +15,7 @@ combinedWorkerJarVersion=5.0.0.0-Iguana1.0
cordaPluginsVersion=7.0.3

# Specify the version of the CSDE gradle plugin to use
csdePluginVersion=1.2.0-alpha-+
csdePluginVersion=1.1.0

# Specify the name of the workflows module
workflowsModule=workflows
Expand All @@ -35,12 +35,6 @@ junitVersion = 5.8.2
mockitoKotlinVersion=4.0.0
mockitoVersion=4.6.1
hamcrestVersion=2.2
contractTestingVersion=0.9.0-beta-+

# Specify the maximum amount of time allowed for the CPI upload
# As your CorDapp grows you might need to increase this
# Value is in milliseconds
cpiUploadDefault=10000

# R3 internal repository
# Use this version when pointing to artefacts in artifactory that have not been published to S3
Expand Down
5 changes: 0 additions & 5 deletions workflows/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ dependencies {
// The CorDapp uses the slf4j logging framework. Corda-API provides this so we need a 'cordaProvided' declaration.
cordaProvided 'org.slf4j:slf4j-api'

// Dependencies Required By Simulator Tests
// Todo: these are commented out as the simulator UTXO work has not been merged into Gecko yet.
// testImplementation "net.corda:corda-simulator-api:$simulatorVersion"
// testRuntimeOnly "net.corda:corda-simulator-runtime:$simulatorVersion"

// 3rd party libraries
// Required
testImplementation "org.slf4j:slf4j-simple:2.0.0"
Expand Down