mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
Add transaction serialization dependencies
This commit is contained in:
parent
166bc6b3f3
commit
633be8d631
@ -193,6 +193,8 @@ buildscript {
|
||||
}
|
||||
|
||||
maven {
|
||||
// TODO: fix conclaveRepo property
|
||||
// (none of the conclave properties seem to be sourced from gradle.properties, they appear to be coming from somewhere else)
|
||||
def path = Paths.get(rootDir.absolutePath).resolve("./repo").toAbsolutePath().normalize()
|
||||
if (!Files.isDirectory(path.resolve("com"))) {
|
||||
if (Files.isDirectory(Paths.get("/repo/com"))) {
|
||||
@ -440,7 +442,9 @@ allprojects {
|
||||
jcenter()
|
||||
|
||||
maven {
|
||||
def path = Paths.get(rootDir.absolutePath).resolve(conclaveRepo).toAbsolutePath().normalize()
|
||||
// TODO: fix conclaveRepo property
|
||||
// (none of the conclave properties seem to be sourced from gradle.properties, they appear to be coming from somewhere else)
|
||||
def path = Paths.get(rootDir.absolutePath).resolve("./repo").toAbsolutePath().normalize()
|
||||
if (!Files.isDirectory(path.resolve("com"))) {
|
||||
if (Files.isDirectory(Paths.get("/repo/com"))) {
|
||||
path = Paths.get("/repo")
|
||||
|
@ -1,7 +1,11 @@
|
||||
apply plugin: 'kotlin'
|
||||
|
||||
dependencies {
|
||||
implementation "com.r3.conclave:conclave-common:$conclaveVersion"
|
||||
// TODO: fix conclaveVersion property
|
||||
// (none of the conclave properties seem to be sourced from gradle.properties, they appear to be coming from somewhere else)
|
||||
implementation "com.r3.conclave:conclave-common:1.1"
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||
implementation "net.i2p.crypto:eddsa:0.3.0"
|
||||
|
||||
implementation project(':core')
|
||||
}
|
||||
|
@ -1,6 +1,20 @@
|
||||
plugins {
|
||||
id 'kotlin'
|
||||
id 'com.r3.conclave.enclave'
|
||||
id 'org.jetbrains.kotlin.jvm'
|
||||
id 'org.jetbrains.kotlin.plugin.allopen'
|
||||
}
|
||||
|
||||
apply plugin: 'kotlin'
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'kotlin-allopen'
|
||||
apply plugin: 'kotlin-noarg'
|
||||
|
||||
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
||||
kotlinOptions {
|
||||
jvmTarget = "1.8"
|
||||
javaParameters = true
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -10,6 +24,11 @@ tasks.withType(JavaCompile) {
|
||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||
targetCompatibility = JavaVersion.VERSION_1_8
|
||||
options.encoding = 'UTF-8'
|
||||
options.compilerArgs << '-parameters'
|
||||
}
|
||||
|
||||
noArg {
|
||||
annotations("net.corda.core.serialization.CordaSerializable", "net.corda.core.contracts.BelongsToContract")
|
||||
}
|
||||
|
||||
/**
|
||||
@ -31,9 +50,21 @@ tasks.withType(AbstractCompile) {
|
||||
|
||||
dependencies {
|
||||
implementation project(':common-enclave')
|
||||
implementation project(':node-api')
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
||||
implementation 'junit:junit:4.13.1'
|
||||
|
||||
implementation "com.r3.conclave:conclave-enclave"
|
||||
|
||||
implementation ("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.72") {
|
||||
exclude group: 'org.jetbrains.kotlinx', module: 'kotlinx-serialization-json'
|
||||
}
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.72"
|
||||
implementation "org.bouncycastle:bcprov-jdk15on:1.68"
|
||||
implementation "com.github.ben-manes.caffeine:caffeine:2.7.0"
|
||||
|
||||
testImplementation(platform('org.junit:junit-bom:5.7.0'))
|
||||
}
|
||||
|
||||
|
@ -47,8 +47,9 @@ abstract class CommandEnclave : Enclave() {
|
||||
* @param mail the received [EnclaveMail].
|
||||
* @param routingHint a [String] containing the executing flowId and enclave command to execute.
|
||||
* @throws [IllegalArgumentException] if [routingHint] is null, or cannot be parsed.
|
||||
* @throws [IllegalStateException] if attempting to execute a command when the host has not been registered.
|
||||
*/
|
||||
override fun receiveMail(mail: EnclaveMail, routingHint: String?) {
|
||||
override fun receiveMail(id: Long, mail: EnclaveMail, routingHint: String?) {
|
||||
routingHint ?: throw IllegalArgumentException(
|
||||
"routingHint must be set for this enclave: ${this.javaClass.simpleName}")
|
||||
|
||||
|
@ -5,4 +5,5 @@ owasp.failOnError=false
|
||||
owasp.failBuildOnCVSS=11.0
|
||||
compilation.allWarningsAsErrors=false
|
||||
test.parallel=false
|
||||
conclaveVersion=1.2.1
|
||||
conclaveVersion=1.1
|
||||
conclaveRepo=./repo
|
@ -27,7 +27,10 @@ pluginManagement {
|
||||
}
|
||||
|
||||
plugins {
|
||||
id 'com.r3.conclave.enclave' version conclaveVersion apply false
|
||||
println("CONCLAVE VERSION: $conclaveVersion")
|
||||
// TODO: fix conclaveVersion property
|
||||
// (none of the conclave properties seem to be sourced from gradle.properties, they appear to be coming from somewhere else)
|
||||
id 'com.r3.conclave.enclave' version '1.1' apply false
|
||||
}
|
||||
}
|
||||
// The project is named 'corda-project' and not 'corda' because if this is named the same as the
|
||||
|
Loading…
Reference in New Issue
Block a user