apply plugin: 'kotlin' apply plugin: 'net.corda.plugins.quasar-utils' apply plugin: 'net.corda.plugins.publish-utils' apply plugin: 'maven-publish' apply plugin: 'com.jfrog.bintray' repositories { mavenLocal() mavenCentral() maven { url 'http://oss.sonatype.org/content/repositories/snapshots' } jcenter() maven { url 'https://dl.bintray.com/kotlin/exposed' } } //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 } sourceSets { integrationTest { kotlin { compileClasspath += main.output + test.output runtimeClasspath += main.output + test.output srcDir file('src/integration-test/kotlin') } } test { resources { srcDir "../config/test" } } } // 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(':node') // Log4J: logging framework (with SLF4J bindings) compile "org.apache.logging.log4j:log4j-slf4j-impl:${log4j_version}" compile "org.apache.logging.log4j:log4j-core:${log4j_version}" compile "com.google.guava:guava:19.0" // 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}" // Unit testing helpers. testCompile 'junit:junit:4.12' testCompile "org.assertj:assertj-core:${assertj_version}" testCompile project(':test-utils') // Integration test helpers integrationTestCompile 'junit:junit:4.12' } task integrationTest(type: Test) { testClassesDir = sourceSets.integrationTest.output.classesDir classpath = sourceSets.integrationTest.runtimeClasspath } bintray { user = System.getenv('CORDA_BINTRAY_USER') key = System.getenv('CORDA_BINTRAY_KEY') publications = ['client'] dryRun = false pkg { repo = 'corda' name = 'client' userOrg = 'r3' licenses = ['Apache-2.0'] version { gpg { sign = true passphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE') } } } } publishing { publications { client(MavenPublication) { from components.java artifactId 'client' artifact sourceJar artifact javadocJar pom.withXml { asNode().children().last() + { resolveStrategy = Closure.DELEGATE_FIRST name 'client' description 'Corda client modules' url 'https://github.com/corda/corda' scm { url 'https://github.com/corda/corda' } licenses { license { name 'Apache-2.0' url 'https://www.apache.org/licenses/LICENSE-2.0' distribution 'repo' } } developers { developer { id 'R3' name 'R3' email 'dev@corda.net' } } } } } } }