2017-03-29 16:28:02 +00:00
|
|
|
|
2015-11-03 12:37:19 +00:00
|
|
|
buildscript {
|
2016-12-06 16:29:15 +00:00
|
|
|
// For sharing constants between builds
|
2017-03-24 11:22:53 +00:00
|
|
|
Properties constants = new Properties()
|
2017-03-30 15:27:01 +00:00
|
|
|
file("$projectDir/constants.properties").withInputStream { constants.load(it) }
|
2016-12-06 16:29:15 +00:00
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
// Our version: bump this on release.
|
2017-06-28 14:55:43 +00:00
|
|
|
ext.corda_release_version = "0.14-SNAPSHOT"
|
2017-04-19 10:05:27 +00:00
|
|
|
// Increment this on any release that changes public APIs anywhere in the Corda platform
|
|
|
|
// TODO This is going to be difficult until we have a clear separation throughout the code of what is public and what is internal
|
|
|
|
ext.corda_platform_version = 1
|
2017-03-24 11:22:53 +00:00
|
|
|
ext.gradle_plugins_version = constants.getProperty("gradlePluginsVersion")
|
2017-01-03 14:15:23 +00:00
|
|
|
|
|
|
|
// Dependency versions. Can run 'gradle dependencyUpdates' to find new versions of things.
|
|
|
|
//
|
|
|
|
// TODO: Sort this alphabetically.
|
2017-03-30 15:27:01 +00:00
|
|
|
ext.kotlin_version = constants.getProperty("kotlinVersion")
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.quasar_version = '0.7.6' // TODO: Upgrade to 0.7.7+ when Quasar bug 238 is resolved.
|
2017-05-24 08:58:33 +00:00
|
|
|
|
|
|
|
// gradle-capsule-plugin:1.0.2 contains capsule:1.0.1
|
|
|
|
// TODO: Upgrade gradle-capsule-plugin to a version with capsule:1.0.3
|
|
|
|
ext.capsule_version = '1.0.1'
|
|
|
|
|
2016-01-05 10:44:38 +00:00
|
|
|
ext.asm_version = '0.5.3'
|
2017-06-14 17:51:30 +00:00
|
|
|
ext.artemis_version = '2.1.0'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.jackson_version = '2.8.5'
|
2016-07-04 14:34:45 +00:00
|
|
|
ext.jetty_version = '9.3.9.v20160517'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.jersey_version = '2.25'
|
|
|
|
ext.jolokia_version = '2.0.0-M3'
|
|
|
|
ext.assertj_version = '3.6.1'
|
2017-04-24 19:30:21 +00:00
|
|
|
ext.slf4j_version = '1.7.25'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.log4j_version = '2.7'
|
2017-04-27 11:22:04 +00:00
|
|
|
ext.bouncycastle_version = constants.getProperty("bouncycastleVersion")
|
2017-03-24 11:22:53 +00:00
|
|
|
ext.guava_version = constants.getProperty("guavaVersion")
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.quickcheck_version = '0.7'
|
|
|
|
ext.okhttp_version = '3.5.0'
|
2017-06-01 14:43:57 +00:00
|
|
|
ext.netty_version = '4.1.9.Final'
|
2017-04-10 12:45:40 +00:00
|
|
|
ext.typesafe_config_version = constants.getProperty("typesafeConfigVersion")
|
2017-03-22 15:52:54 +00:00
|
|
|
ext.fileupload_version = '1.3.2'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.junit_version = '4.12'
|
2017-03-30 10:04:51 +00:00
|
|
|
ext.mockito_version = '1.10.19'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.jopt_simple_version = '5.0.2'
|
|
|
|
ext.jansi_version = '1.14'
|
|
|
|
ext.hibernate_version = '5.2.6.Final'
|
2017-03-20 10:27:45 +00:00
|
|
|
ext.h2_version = '1.4.194'
|
2017-02-16 11:02:36 +00:00
|
|
|
ext.rxjava_version = '1.2.4'
|
2017-06-22 09:35:49 +00:00
|
|
|
ext.requery_version = '1.3.1'
|
2017-06-16 09:18:32 +00:00
|
|
|
ext.dokka_version = '0.9.14'
|
2017-05-18 14:58:35 +00:00
|
|
|
ext.eddsa_version = '0.2.0'
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2017-04-21 15:26:35 +00:00
|
|
|
// Update 121 is required for ObjectInputFilter and at time of writing 131 was latest:
|
|
|
|
ext.java8_minUpdateVersion = '131'
|
|
|
|
|
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()
|
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"
|
2017-01-03 14:15:23 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
|
2017-02-16 11:02:36 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-noarg:$kotlin_version"
|
2017-01-17 12:50:16 +00:00
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${dokka_version}"
|
2017-03-06 14:19:04 +00:00
|
|
|
classpath "org.ajoberstar:grgit:1.1.0"
|
2017-05-18 14:58:35 +00:00
|
|
|
classpath "net.i2p.crypto:eddsa:$eddsa_version" // Needed for ServiceIdentityGenerator in the build environment.
|
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.
|
2017-05-24 08:58:33 +00:00
|
|
|
// Version 1.0.2 of this plugin uses capsule:1.0.1
|
2016-08-02 17:15:11 +00:00
|
|
|
id "us.kirchmeier.capsule" version "1.0.2"
|
|
|
|
}
|
|
|
|
|
2017-03-06 14:19:04 +00:00
|
|
|
ext {
|
|
|
|
corda_revision = org.ajoberstar.grgit.Grgit.open(file('.')).head().id
|
|
|
|
}
|
|
|
|
|
2016-08-02 17:15:11 +00:00
|
|
|
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-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 {
|
2017-04-19 14:39:53 +00:00
|
|
|
apply plugin: 'kotlin'
|
2016-08-02 17:15:11 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'jacoco'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2017-05-05 11:14:02 +00:00
|
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" << "-Xlint:-options" << "-parameters"
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 14:39:53 +00:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
kotlinOptions {
|
|
|
|
languageVersion = "1.1"
|
|
|
|
apiVersion = "1.1"
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
javaParameters = true // Useful for reflection.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 10:05:27 +00:00
|
|
|
tasks.withType(Jar) { // Includes War and Ear
|
|
|
|
manifest {
|
|
|
|
attributes('Corda-Release-Version': corda_release_version)
|
|
|
|
attributes('Corda-Platform-Version': corda_platform_version)
|
|
|
|
attributes('Corda-Revision': corda_revision)
|
|
|
|
attributes('Corda-Vendor': 'Corda Open Source')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-05 16:30:51 +00:00
|
|
|
tasks.withType(Test) {
|
|
|
|
// Prevent the project from creating temporary files outside of the build directory.
|
|
|
|
systemProperties['java.io.tmpdir'] = buildDir
|
|
|
|
}
|
|
|
|
|
2016-11-10 13:14:38 +00:00
|
|
|
group 'net.corda'
|
2017-04-19 10:05:27 +00:00
|
|
|
version "$corda_release_version"
|
2017-02-17 19:51:54 +00:00
|
|
|
|
|
|
|
repositories {
|
2017-03-28 16:17:40 +00:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
// TODO: remove this once we eliminate Exposed
|
|
|
|
maven {
|
|
|
|
url 'https://dl.bintray.com/kotlin/exposed'
|
|
|
|
}
|
2017-02-17 19:51:54 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
2017-03-30 19:59:50 +00:00
|
|
|
|
|
|
|
configurations.compile {
|
|
|
|
// We want to use SLF4J's version of these bindings: jcl-over-slf4j
|
|
|
|
// Remove any transitive dependency on Apache's version.
|
|
|
|
exclude group: 'commons-logging', module: 'commons-logging'
|
|
|
|
}
|
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)
|
2017-04-21 15:26:35 +00:00
|
|
|
throw new GradleException("Corda requires Java 8, please upgrade to at least 1.8.0_$java8_minUpdateVersion")
|
2016-11-15 12:16:30 +00:00
|
|
|
|
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')
|
2017-01-03 14:15:23 +00:00
|
|
|
compile "com.google.guava:guava:$guava_version"
|
2017-02-24 16:15:30 +00:00
|
|
|
|
2017-04-04 14:45:41 +00:00
|
|
|
// Set to compile to ensure it exists now deploy nodes no longer relies on build
|
|
|
|
compile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
|
|
|
compile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
2017-03-09 17:11:37 +00:00
|
|
|
|
|
|
|
// For the buildCordappDependenciesJar task
|
2017-03-21 19:45:12 +00:00
|
|
|
runtime project(':client:jfx')
|
|
|
|
runtime project(':client:mock')
|
2017-03-22 15:52:54 +00:00
|
|
|
runtime project(':client:rpc')
|
2017-02-24 16:15:30 +00:00
|
|
|
runtime project(':core')
|
2017-03-09 17:11:37 +00:00
|
|
|
runtime project(':finance')
|
2017-03-30 16:34:32 +00:00
|
|
|
runtime project(':webserver')
|
2017-03-09 17:11:37 +00:00
|
|
|
testCompile project(':test-utils')
|
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}")
|
|
|
|
}
|
|
|
|
|
2017-04-04 14:45:41 +00:00
|
|
|
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
|
2016-11-30 15:58:00 +00:00
|
|
|
directory "./build/nodes"
|
2017-06-20 15:58:00 +00:00
|
|
|
networkMap "CN=Controller,O=R3,OU=corda,L=London,C=GB"
|
2016-11-30 15:58:00 +00:00
|
|
|
node {
|
2017-06-20 15:58:00 +00:00
|
|
|
name "CN=Controller,O=R3,OU=corda,L=London,C=GB"
|
2016-11-30 15:58:00 +00:00
|
|
|
advertisedServices = ["corda.notary.validating"]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10002
|
2016-11-30 15:58:00 +00:00
|
|
|
cordapps = []
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
2016-11-30 15:58:00 +00:00
|
|
|
node {
|
2017-06-20 15:58:00 +00:00
|
|
|
name "CN=Bank A,O=R3,OU=corda,L=London,C=GB"
|
2016-11-30 15:58:00 +00:00
|
|
|
advertisedServices = []
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10012
|
|
|
|
rpcPort 10013
|
|
|
|
webPort 10014
|
2016-11-30 15:58:00 +00:00
|
|
|
cordapps = []
|
2016-08-04 10:03:04 +00:00
|
|
|
}
|
2016-11-30 15:58:00 +00:00
|
|
|
node {
|
2017-06-20 15:58:00 +00:00
|
|
|
name "CN=Bank B,O=R3,OU=corda,L=London,C=GB"
|
2016-11-30 15:58:00 +00:00
|
|
|
advertisedServices = []
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10007
|
|
|
|
rpcPort 10008
|
|
|
|
webPort 10009
|
2016-11-30 15:58:00 +00:00
|
|
|
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')
|
2017-07-03 16:54:30 +00:00
|
|
|
publications = ['corda-jfx', 'corda-mock', 'corda-rpc', 'corda-core', 'corda', 'cordform-common', 'corda-finance', 'corda-node', 'corda-node-api', 'corda-node-schemas', 'corda-test-common', 'corda-test-utils', 'corda-jackson', 'corda-verifier', 'corda-webserver-impl', 'corda-webserver']
|
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'
|
|
|
|
}
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|
2017-01-17 12:50:16 +00:00
|
|
|
|
2017-03-09 17:11:37 +00:00
|
|
|
// Build a ZIP of all JARs required to compile the Cordapp template
|
|
|
|
// Note: corda.jar is used at runtime so no runtime ZIP is necessary.
|
|
|
|
// Resulting ZIP can be found in "build/distributions"
|
|
|
|
task buildCordappDependenciesZip(type: Zip) {
|
2017-02-24 16:15:30 +00:00
|
|
|
baseName 'corda-deps'
|
|
|
|
from configurations.runtime
|
|
|
|
from configurations.compile
|
2017-03-09 17:11:37 +00:00
|
|
|
from configurations.testCompile
|
|
|
|
from buildscript.configurations.classpath
|
2017-02-24 21:57:34 +00:00
|
|
|
from 'node/capsule/NOTICE' // CDDL notice
|
2017-02-24 16:15:30 +00:00
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
}
|