2015-11-03 12:37:19 +00:00
|
|
|
buildscript {
|
2016-12-06 16:29:15 +00:00
|
|
|
// For sharing constants between builds
|
|
|
|
Properties props = new Properties()
|
|
|
|
file("publish.properties").withInputStream { props.load(it) }
|
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
// Our version: bump this on release.
|
2016-11-29 20:15:24 +00:00
|
|
|
ext.corda_version = "0.7-SNAPSHOT"
|
2016-12-06 16:29:15 +00:00
|
|
|
ext.gradle_plugins_version = props.getProperty("gradlePluginsVersion")
|
2016-12-07 16:43:05 +00:00
|
|
|
ext.kotlin_version = '1.0.5-2'
|
2016-08-12 16:37:56 +00:00
|
|
|
ext.quasar_version = '0.7.6'
|
2016-01-05 10:44:38 +00:00
|
|
|
ext.asm_version = '0.5.3'
|
2016-10-13 18:02:41 +00:00
|
|
|
ext.artemis_version = '1.4.0'
|
2016-07-04 14:34:45 +00:00
|
|
|
ext.jackson_version = '2.8.0.rc2'
|
|
|
|
ext.jetty_version = '9.3.9.v20160517'
|
|
|
|
ext.jersey_version = '2.23.1'
|
2016-12-02 18:03:25 +00:00
|
|
|
ext.jolokia_version = '2.0.0-M1'
|
2016-07-04 14:34:45 +00:00
|
|
|
ext.assertj_version = '3.5.1'
|
2016-07-21 12:55:40 +00:00
|
|
|
ext.log4j_version = '2.6.2'
|
2016-07-21 12:56:23 +00:00
|
|
|
ext.bouncycastle_version = '1.54'
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
repositories {
|
2016-11-21 17:09:48 +00:00
|
|
|
mavenLocal()
|
2015-11-03 12:37:19 +00:00
|
|
|
mavenCentral()
|
2015-11-16 11:16:37 +00:00
|
|
|
jcenter()
|
2016-11-18 14:41:06 +00:00
|
|
|
// TODO: Remove this once all packages are published to jcenter or maven central. (M6 or 7).
|
|
|
|
maven {
|
|
|
|
url "http://r3.bintray.com/corda"
|
|
|
|
}
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2016-11-15 17:38:50 +00:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
|
2016-11-25 16:34:32 +00:00
|
|
|
classpath "net.corda.plugins:publish-utils:$gradle_plugins_version"
|
|
|
|
classpath "net.corda.plugins:quasar-utils:$gradle_plugins_version"
|
|
|
|
classpath "net.corda.plugins:cordformation:$gradle_plugins_version"
|
2016-07-04 14:34:45 +00:00
|
|
|
|
|
|
|
// Can run 'gradle dependencyUpdates' to find new versions of things.
|
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-02 17:15:11 +00:00
|
|
|
plugins {
|
2016-08-08 10:54:41 +00:00
|
|
|
// TODO The capsule plugin requires the newer DSL plugin block.It would be nice if we could unify all the plugins into one style,
|
|
|
|
// but the DSL has some restrictions e.g can't be used on the allprojects section. So we should revisit this if there are improvements in Gradle.
|
2016-08-02 17:15:11 +00:00
|
|
|
id "us.kirchmeier.capsule" version "1.0.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'project-report'
|
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
2016-12-06 10:49:46 +00:00
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
2016-11-18 14:41:06 +00:00
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
2016-11-30 15:58:00 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
2016-08-02 17:15:11 +00:00
|
|
|
|
2016-11-22 11:23:43 +00:00
|
|
|
// We need the following three lines even though they're inside an allprojects {} block below because otherwise
|
|
|
|
// IntelliJ gets confused when importing the project and ends up erasing and recreating the .idea directory, along
|
|
|
|
// with the run configurations. It also doesn't realise that the project is a Java 8 project and misconfigures
|
|
|
|
// the resulting import. This fixes it.
|
|
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
|
2016-08-02 17:15:11 +00:00
|
|
|
allprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2016-11-28 11:04:07 +00:00
|
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" << "-Xlint:-options"
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 13:14:38 +00:00
|
|
|
group 'net.corda'
|
2016-11-17 11:03:40 +00:00
|
|
|
version "$corda_version"
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
|
|
|
|
2016-11-15 12:16:30 +00:00
|
|
|
// Check that we are running on a Java 8 JDK. The source/targetCompatibility values above aren't sufficient to
|
|
|
|
// guarantee this because those are properties checked by the Java plugin, but we're using Kotlin.
|
|
|
|
//
|
|
|
|
// We recommend a specific minor version (unfortunately, not checkable directly) because JavaFX adds APIs in
|
|
|
|
// minor releases, so we can't work with just any Java 8, it has to be a recent one.
|
|
|
|
if (!JavaVersion.current().java8Compatible)
|
|
|
|
throw new GradleException("Corda requires Java 8, please upgrade to at least 1.8.0_112")
|
|
|
|
|
2015-11-16 11:16:37 +00:00
|
|
|
repositories {
|
2016-11-04 17:15:06 +00:00
|
|
|
mavenCentral()
|
2015-11-16 11:16:37 +00:00
|
|
|
jcenter()
|
2016-11-04 17:53:37 +00:00
|
|
|
maven {
|
|
|
|
url 'https://dl.bintray.com/kotlin/exposed'
|
|
|
|
}
|
2016-06-09 13:11:18 +00:00
|
|
|
}
|
|
|
|
|
2016-11-04 17:53:37 +00:00
|
|
|
// Required for building out the fat JAR.
|
2016-11-04 17:15:06 +00:00
|
|
|
dependencies {
|
2016-11-04 17:53:37 +00:00
|
|
|
compile project(':node')
|
2016-11-04 17:15:06 +00:00
|
|
|
compile "com.google.guava:guava:19.0"
|
2016-12-06 15:03:33 +00:00
|
|
|
runtime project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
2016-11-04 17:15:06 +00:00
|
|
|
}
|
|
|
|
|
2016-07-21 10:11:37 +00:00
|
|
|
task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
|
|
|
|
dependsOn = subprojects.test
|
|
|
|
additionalSourceDirs = files(subprojects.sourceSets.main.allSource.srcDirs)
|
|
|
|
sourceDirectories = files(subprojects.sourceSets.main.allSource.srcDirs)
|
|
|
|
classDirectories = files(subprojects.sourceSets.main.output)
|
|
|
|
executionData = files(subprojects.jacocoTestReport.executionData)
|
|
|
|
reports {
|
|
|
|
html.enabled = true
|
|
|
|
xml.enabled = true
|
|
|
|
csv.enabled = false
|
|
|
|
}
|
|
|
|
onlyIf = {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
doFirst {
|
|
|
|
executionData = files(executionData.findAll {
|
|
|
|
it.exists()
|
|
|
|
})
|
|
|
|
}
|
2016-07-21 16:40:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(Test) {
|
|
|
|
reports.html.destination = file("${reporting.baseDir}/${name}")
|
|
|
|
}
|
|
|
|
|
2016-11-30 15:58:00 +00:00
|
|
|
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
|
|
|
|
directory "./build/nodes"
|
|
|
|
networkMap "Controller"
|
|
|
|
node {
|
|
|
|
name "Controller"
|
|
|
|
dirName "controller"
|
|
|
|
nearestCity "London"
|
|
|
|
advertisedServices = ["corda.notary.validating"]
|
|
|
|
artemisPort 10002
|
|
|
|
webPort 10003
|
|
|
|
cordapps = []
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
2016-11-30 15:58:00 +00:00
|
|
|
node {
|
|
|
|
name "Bank A"
|
|
|
|
dirName "nodea"
|
|
|
|
nearestCity "London"
|
|
|
|
advertisedServices = []
|
|
|
|
artemisPort 10004
|
|
|
|
webPort 10005
|
|
|
|
cordapps = []
|
2016-08-04 10:03:04 +00:00
|
|
|
}
|
2016-11-30 15:58:00 +00:00
|
|
|
node {
|
|
|
|
name "Bank B"
|
|
|
|
dirName "nodeb"
|
|
|
|
nearestCity "New York"
|
|
|
|
advertisedServices = []
|
|
|
|
artemisPort 10006
|
|
|
|
webPort 10007
|
|
|
|
cordapps = []
|
2016-08-08 13:35:10 +00:00
|
|
|
}
|
2016-08-30 12:50:02 +00:00
|
|
|
}
|
2016-09-28 12:46:00 +00:00
|
|
|
|
2016-12-06 10:49:46 +00:00
|
|
|
bintrayConfig {
|
|
|
|
user = System.getenv('CORDA_BINTRAY_USER')
|
|
|
|
key = System.getenv('CORDA_BINTRAY_KEY')
|
|
|
|
repo = 'corda'
|
|
|
|
org = 'r3'
|
|
|
|
licenses = ['Apache-2.0']
|
|
|
|
vcsUrl = 'https://github.com/corda/corda'
|
|
|
|
projectUrl = 'https://github.com/corda/corda'
|
|
|
|
gpgSign = true
|
|
|
|
gpgPassphrase = System.getenv('CORDA_BINTRAY_GPG_PASSPHRASE')
|
2016-12-06 13:34:04 +00:00
|
|
|
publications = ['client', 'core', 'corda', 'finance', 'node', 'test-utils']
|
2016-12-06 10:49:46 +00:00
|
|
|
license {
|
|
|
|
name = 'Apache-2.0'
|
|
|
|
url = 'https://www.apache.org/licenses/LICENSE-2.0'
|
|
|
|
distribution = 'repo'
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id = 'R3'
|
|
|
|
name = 'R3'
|
|
|
|
email = 'dev@corda.net'
|
|
|
|
}
|
|
|
|
}
|