mirror of
https://github.com/corda/corda.git
synced 2024-12-25 23:51:10 +00:00
f31afd1520
# Conflicts: # build.gradle # docs/source/_static/versions # docs/source/running-a-node.rst
89 lines
2.5 KiB
Groovy
89 lines
2.5 KiB
Groovy
/*
|
|
* R3 Proprietary and Confidential
|
|
*
|
|
* Copyright (c) 2018 R3 Limited. All rights reserved.
|
|
*
|
|
* The intellectual and technical concepts contained herein are proprietary to R3 and its suppliers and are protected by trade secret law.
|
|
*
|
|
* Distribution of this file or any portion thereof via any medium without the express permission of R3 is strictly prohibited.
|
|
*/
|
|
|
|
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 modules'
|
|
|
|
sourceSets {
|
|
integrationTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test/kotlin')
|
|
}
|
|
resources {
|
|
srcDir file('../../testing/test-utils/src/main/resources')
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Note the :finance module is a CorDapp in its own right
|
|
// and CorDapps using :finance features should use 'cordapp' not 'compile' linkage.
|
|
cordaCompile project(':core')
|
|
cordaCompile project(':confidential-identities')
|
|
|
|
// TODO Remove this once we have app configs
|
|
compile "com.typesafe:config:$typesafe_config_version"
|
|
|
|
// 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
|
|
integrationTestCompile.extendsFrom testCompile
|
|
integrationTestRuntime.extendsFrom testRuntime
|
|
}
|
|
|
|
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'
|
|
exclude "META-INF/*.DSA"
|
|
exclude "META-INF/*.RSA"
|
|
exclude "META-INF/*.SF"
|
|
exclude "META-INF/*.MF"
|
|
exclude "META-INF/LICENSE"
|
|
exclude "META-INF/NOTICE"
|
|
}
|
|
|
|
publish {
|
|
name jar.baseName
|
|
}
|