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: '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 - flows'
sourceSets {
integrationTest {
kotlin {
compileClasspath + = main . output + test . output
runtimeClasspath + = main . output + test . output
srcDir file ( 'src/integration-test/kotlin' )
}
resources {
srcDir file ( 'src/integration-test/resources' )
}
}
}
2019-05-20 10:57:56 +00:00
configurations {
testArtifacts . extendsFrom testRuntimeClasspath
integrationTestCompile . extendsFrom testCompile
integrationTestRuntimeOnly . extendsFrom testRuntimeOnly
}
2018-12-19 18:02:51 +00:00
dependencies {
// Note: 3rd party CorDapps should remember to include the relevant Finance CorDapp dependencies using `cordapp`
// cordapp project(':finance:workflows')
// cordapp project(':finance:contracts')
cordaCompile project ( ':core' )
2019-02-17 11:47:38 +00:00
cordaCompile project ( ':confidential-identities' )
2019-01-10 12:31:47 +00:00
2018-12-19 18:02:51 +00:00
cordapp project ( ':finance:contracts' )
2019-02-01 17:31:12 +00:00
2018-12-19 18:02:51 +00:00
testCompile project ( ':test-utils' )
testCompile project ( path: ':core' , configuration: 'testArtifacts' )
2019-07-09 09:09:21 +00:00
testCompile project ( ':node-driver' )
2019-05-20 10:57:56 +00:00
2019-05-15 15:40:12 +00:00
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
2019-05-20 10:57:56 +00:00
testImplementation "junit:junit:$junit_version"
2019-05-15 15:40:12 +00:00
2019-05-20 10:57:56 +00:00
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
2019-05-15 15:40:12 +00:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
2018-12-19 18:02:51 +00:00
// AssertJ: for fluent assertions for testing
testCompile "org.assertj:assertj-core:$assertj_version"
}
task testJar ( type: Jar ) {
classifier "tests"
from sourceSets . test . output
}
task integrationTest ( type: Test , dependsOn: [ ] ) {
testClassesDirs = sourceSets . integrationTest . output . classesDirs
classpath = sourceSets . integrationTest . runtimeClasspath
}
artifacts {
testArtifacts testJar
}
jar {
baseName 'corda-finance-workflows'
}
cordapp {
targetPlatformVersion corda_platform_version . toInteger ( )
minimumPlatformVersion 1
workflow {
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
}