2018-12-19 18:02:51 +00:00
apply plugin: 'kotlin'
// Java Persistence API support: create no-arg constructor
// see: http://stackoverflow.com/questions/32038177/kotlin-with-jpa-default-constructor-hell
apply plugin: 'kotlin-jpa'
apply plugin: CanonicalizerPlugin
apply plugin: 'net.corda.plugins.publish-utils'
apply plugin: 'net.corda.plugins.quasar-utils'
apply plugin: 'net.corda.plugins.cordapp'
apply plugin: 'com.jfrog.artifactory'
description 'Corda finance module - contracts'
dependencies {
// Note: 3rd party CorDapps should remember to include the relevant Finance CorDapp dependencies using `cordapp`
// cordapp project(':finance:workflows')
// cordapp project(':finance:contracts')
2019-01-03 16:11:40 +00:00
cordapp project ( ':core' )
cordapp project ( ':confidential-identities' )
2018-12-19 18:02:51 +00:00
// For JSON
compile "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
testCompile project ( ':test-utils' )
testCompile project ( path: ':core' , configuration: 'testArtifacts' )
testCompile "junit:junit:$junit_version"
// AssertJ: for fluent assertions for testing
testCompile "org.assertj:assertj-core:$assertj_version"
}
configurations {
testArtifacts . extendsFrom testRuntime
}
jar {
baseName 'corda-finance-contracts'
2019-01-02 16:31:25 +00:00
manifest {
attributes ( 'Corda-Revision' : 'n/a' )
attributes ( 'Corda-Vendor' : 'Corda Open Source' )
}
2018-12-19 18:02:51 +00:00
}
cordapp {
2019-01-02 16:31:25 +00:00
signing {
enabled false
}
2018-12-19 18:02:51 +00:00
targetPlatformVersion corda_platform_version . toInteger ( )
minimumPlatformVersion 1
contract {
name "Corda Finance Demo"
versionId 1
vendor "R3"
licence "Open Source (Apache 2)"
}
// By default the Cordapp is signed by Corda development certificate, for production build pass the following system properties to Gradle to use specific keystore e.g:
// ./gradlew -Dsigning.enabled="true" -Dsigning.keystore="/path/to/keystore.jks" -Dsigning.alias="alias" -Dsigning.storepass="password" -Dsigning.keypass="password"
}
publish {
name jar . baseName
}