corda/client/jfx/build.gradle

66 lines
1.9 KiB
Groovy
Raw Normal View History

2016-08-26 13:29:25 +00:00
apply plugin: 'kotlin'
apply plugin: 'net.corda.plugins.quasar-utils'
apply plugin: 'net.corda.plugins.publish-utils'
2017-06-26 17:07:56 +00:00
apply plugin: 'com.jfrog.artifactory'
2016-08-26 13:29:25 +00:00
description 'Corda client JavaFX modules'
2016-08-26 13:29:25 +00:00
//noinspection GroovyAssignabilityCheck
configurations {
// we don't want isolated.jar in classPath, since we want to test jar being dynamically loaded as an attachment
runtime.exclude module: 'isolated'
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
2016-08-26 13:29:25 +00:00
}
sourceSets {
integrationTest {
kotlin {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/kotlin')
}
}
2016-08-26 13:29:25 +00:00
}
// To find potential version conflicts, run "gradle htmlDependencyReport" and then look in
// build/reports/project/dependencies/index.html for green highlighted parts of the tree.
dependencies {
compile project(':core')
compile project(':finance')
compile project(':client:rpc')
2016-08-26 13:29:25 +00:00
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
compile "com.google.guava:guava:$guava_version"
2016-08-26 13:29:25 +00:00
// ReactFX: Functional reactive UI programming.
compile 'org.reactfx:reactfx:2.0-M5'
compile 'org.fxmisc.easybind:easybind:1.0.3'
// Artemis Client: ability to connect to an Artemis broker and control it.
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
2016-08-26 13:29:25 +00:00
// Unit testing helpers.
testCompile "junit:junit:$junit_version"
2016-08-26 13:29:25 +00:00
testCompile "org.assertj:assertj-core:${assertj_version}"
2016-09-01 17:36:19 +00:00
testCompile project(':test-utils')
// Integration test helpers
integrationTestCompile "junit:junit:$junit_version"
2016-08-26 13:29:25 +00:00
}
task integrationTest(type: Test) {
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = sourceSets.integrationTest.runtimeClasspath
}
jar {
baseName 'corda-jfx'
}
publish {
name jar.baseName
}