2019-11-28 14:49:39 +00:00
|
|
|
import com.r3.testing.DistributeTestsBy
|
|
|
|
import com.r3.testing.PodLogLevel
|
2019-09-03 15:40:08 +00:00
|
|
|
|
2019-09-18 09:26:26 +00:00
|
|
|
import static org.gradle.api.JavaVersion.VERSION_11
|
2019-10-08 14:33:24 +00:00
|
|
|
import static org.gradle.api.JavaVersion.VERSION_1_8
|
2019-09-18 09:26:26 +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.
|
2019-12-11 17:50:27 +00:00
|
|
|
ext.baseVersion = constants.getProperty("cordaVersion")
|
|
|
|
ext.versionSuffix = constants.getProperty("versionSuffix")
|
|
|
|
|
2022-01-18 11:12:32 +00:00
|
|
|
ext.corda_build_edition = System.getenv("CORDA_BUILD_EDITION")?.trim() ?: "Corda Open Source"
|
2017-11-24 14:32:32 +00:00
|
|
|
ext.corda_platform_version = constants.getProperty("platformVersion")
|
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")
|
2019-09-11 15:34:51 +00:00
|
|
|
ext.warnings_as_errors = project.hasProperty("compilation.warningsAsErrors") ? project.property("compilation.warningsAsErrors").toBoolean() : false
|
2018-06-12 08:38:14 +00:00
|
|
|
|
|
|
|
ext.quasar_group = 'co.paralleluniverse'
|
2019-09-18 09:26:26 +00:00
|
|
|
// Set version of Quasar according to version of Java used:
|
2020-02-20 17:01:24 +00:00
|
|
|
if (JavaVersion.current().isJava8()) {
|
2019-09-18 09:26:26 +00:00
|
|
|
ext.quasar_version = constants.getProperty("quasarVersion")
|
|
|
|
ext.quasar_classifier = constants.getProperty("quasarClassifier")
|
2019-10-08 09:45:10 +00:00
|
|
|
ext.jdkClassifier = constants.getProperty("jdkClassifier")
|
2020-02-20 17:01:24 +00:00
|
|
|
} else {
|
|
|
|
ext.quasar_version = constants.getProperty("quasarVersion11")
|
|
|
|
ext.quasar_classifier = constants.getProperty("quasarClassifier11")
|
|
|
|
ext.jdkClassifier = constants.getProperty("jdkClassifier11")
|
2019-09-18 09:26:26 +00:00
|
|
|
}
|
2019-10-30 17:24:34 +00:00
|
|
|
ext.cordaScanApiClassifier = jdkClassifier
|
2019-05-30 09:09:11 +00:00
|
|
|
ext.quasar_exclusions = [
|
2019-09-03 15:40:08 +00:00
|
|
|
'co.paralleluniverse**',
|
|
|
|
'groovy**',
|
|
|
|
'com.esotericsoftware.**',
|
|
|
|
'jdk**',
|
|
|
|
'junit**',
|
|
|
|
'kotlin**',
|
|
|
|
'net.rubygrapefruit.**',
|
|
|
|
'org.gradle.**',
|
|
|
|
'org.apache.**',
|
|
|
|
'org.jacoco.**',
|
|
|
|
'org.junit**',
|
|
|
|
'org.slf4j**',
|
|
|
|
'worker.org.gradle.**',
|
|
|
|
'com.nhaarman.mockito_kotlin**',
|
|
|
|
'org.assertj**',
|
|
|
|
'org.hamcrest**',
|
|
|
|
'org.mockito**',
|
|
|
|
'org.opentest4j**'
|
|
|
|
]
|
2017-05-24 08:58:33 +00:00
|
|
|
|
2018-09-17 12:55:31 +00:00
|
|
|
// gradle-capsule-plugin:1.0.2 contains capsule:1.0.1 by default.
|
|
|
|
// We must configure it manually to use the latest capsule version.
|
|
|
|
ext.capsule_version = '1.0.3'
|
2017-05-24 08:58:33 +00:00
|
|
|
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.asm_version = '7.1'
|
ENT-6286: OS: Upgrade version of Artemis to 2.19.1 (#6975)
Fixes DDoS attack mentioned on the Jira ticket.
PR upgrades Artemis library to version 2.19.1.
This is our own release of Apache Artemis library which has vulnerability fix for v2.20 applied.
**_Breaking changes discovered during Artemis upgrade:_**
1. When the queue is created as temporary, it needs to explicitly be specified as non-durable.
2. By default, Artemis Client performs Host DNS name check against the certificate presented by the server. Our TLS certificates fail this check and this verification has to be explicitly disabled, see use of: `TransportConstants.VERIFY_HOST_PROP_NAME`.
3. Artemis Server now caches login attempts, even unsuccessful ones. When we add RPC users dynamically via DB insert this may have an unexpected outcome if the user with the same `userName` and `password` was not available previously.
To workaround permissions changing dynamically, authorization and authentication caches had to be disabled.
4. When computing `maxMessageSize`, the size of the headers content is now taken into account as well.
5. Artemis handling of start-up errors has changed. E.g. when the port is already bound.
6. A number of deprecated APIs like: `createTemporaryQueue`, `failoverOnInitialAttempt`, `NullOutputStream`, `CoreQueueConfiguration`.
7. Log warning message is produced like: `AMQ212080: Using legacy SSL store provider value: JKS. Please use either 'keyStoreType' or 'trustStoreType' instead as appropriate.`
8. As reported by QA, Artemis now produces more audit logging more details [here](https://r3-cev.atlassian.net/browse/ENT-6540). Log configuration been adjusted to reduce such output.
2022-01-21 09:18:14 +00:00
|
|
|
ext.artemis_version = '2.19.1'
|
2020-08-11 11:20:26 +00:00
|
|
|
// TODO Upgrade Jackson only when corda is using kotlin 1.3.10
|
2022-03-07 11:08:06 +00:00
|
|
|
ext.jackson_version = '2.13.1'
|
2022-02-24 13:26:37 +00:00
|
|
|
ext.jackson_kotlin_version = '2.9.7'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.jetty_version = '9.4.19.v20190610'
|
2019-06-17 18:27:35 +00:00
|
|
|
ext.jersey_version = '2.25'
|
2019-06-13 09:15:13 +00:00
|
|
|
ext.servlet_version = '4.0.1'
|
|
|
|
ext.assertj_version = '3.12.2'
|
2020-07-23 15:37:29 +00:00
|
|
|
ext.slf4j_version = '1.7.30'
|
2022-01-05 15:50:09 +00:00
|
|
|
ext.log4j_version = '2.17.1'
|
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")
|
2018-03-14 16:07:31 +00:00
|
|
|
ext.caffeine_version = constants.getProperty("caffeineVersion")
|
2018-10-02 09:33:17 +00:00
|
|
|
ext.disruptor_version = constants.getProperty("disruptorVersion")
|
2018-04-13 14:17:20 +00:00
|
|
|
ext.metrics_version = constants.getProperty("metricsVersion")
|
2018-08-09 17:17:20 +00:00
|
|
|
ext.metrics_new_relic_version = constants.getProperty("metricsNewRelicVersion")
|
2019-11-05 13:44:18 +00:00
|
|
|
ext.djvm_version = constants.getProperty("djvmVersion")
|
2019-11-19 15:02:35 +00:00
|
|
|
ext.deterministic_rt_version = constants.getProperty('deterministicRtVersion')
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.okhttp_version = '3.14.2'
|
2022-04-22 14:40:28 +00:00
|
|
|
ext.netty_version = '4.1.76.Final'
|
2022-02-16 18:10:05 +00:00
|
|
|
ext.tcnative_version = constants.getProperty("tcnativeVersion")
|
2017-04-10 12:45:40 +00:00
|
|
|
ext.typesafe_config_version = constants.getProperty("typesafeConfigVersion")
|
2019-06-13 09:15:13 +00:00
|
|
|
ext.fileupload_version = '1.4'
|
2020-03-03 15:55:17 +00:00
|
|
|
ext.kryo_version = '4.0.2'
|
|
|
|
ext.kryo_serializer_version = '0.43'
|
2019-05-15 15:40:12 +00:00
|
|
|
// Legacy JUnit 4 version
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.junit_version = '4.12'
|
2019-05-15 15:40:12 +00:00
|
|
|
// Need this version to access classpath scanning error handling fix -
|
|
|
|
// see https://github.com/junit-team/junit5/commit/389de48c2a18c5a93a7203ef424aa47a8a835a74
|
|
|
|
// Upgrade to 5.5.x when GA release is available.
|
2019-06-13 09:15:13 +00:00
|
|
|
ext.junit_vintage_version = '5.5.0-RC1'
|
|
|
|
ext.junit_jupiter_version = '5.5.0-RC1'
|
|
|
|
ext.junit_platform_version = '1.5.0-RC1'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.mockito_version = '2.28.2'
|
2019-06-13 09:15:13 +00:00
|
|
|
ext.mockito_kotlin_version = '1.6.0'
|
|
|
|
ext.hamkrest_version = '1.7.0.0'
|
2017-01-03 14:15:23 +00:00
|
|
|
ext.jopt_simple_version = '5.0.2'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.jansi_version = '1.18'
|
2022-04-01 15:40:19 +00:00
|
|
|
ext.hibernate_version = '5.4.32.Final'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.h2_version = '1.4.199' // Update docs if renamed or removed.
|
2018-08-27 19:06:01 +00:00
|
|
|
ext.rxjava_version = '1.3.8'
|
2022-02-08 10:25:07 +00:00
|
|
|
ext.dokka_version = '0.10.1'
|
2019-12-09 14:17:48 +00:00
|
|
|
ext.eddsa_version = '0.3.0'
|
2019-08-08 15:05:54 +00:00
|
|
|
ext.dependency_checker_version = '5.2.0'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.commons_collections_version = '4.3'
|
2020-06-25 10:23:18 +00:00
|
|
|
ext.beanutils_version = '1.9.4'
|
2017-11-23 22:27:24 +00:00
|
|
|
ext.jsr305_version = constants.getProperty("jsr305Version")
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.shiro_version = '1.4.1'
|
2017-12-07 17:22:22 +00:00
|
|
|
ext.artifactory_plugin_version = constants.getProperty('artifactoryPluginVersion')
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.hikari_version = '3.3.1'
|
|
|
|
ext.liquibase_version = '3.6.3'
|
2020-02-11 11:57:51 +00:00
|
|
|
ext.artifactory_contextUrl = 'https://software.r3.com/artifactory'
|
2018-02-05 11:42:20 +00:00
|
|
|
ext.snake_yaml_version = constants.getProperty('snakeYamlVersion')
|
2021-07-19 13:02:33 +00:00
|
|
|
ext.docker_compose_rule_version = '1.5.0'
|
2019-06-13 09:15:13 +00:00
|
|
|
ext.selenium_version = '3.141.59'
|
2018-02-05 11:42:20 +00:00
|
|
|
ext.ghostdriver_version = '2.1.0'
|
2018-06-11 19:34:59 +00:00
|
|
|
ext.proguard_version = constants.getProperty('proguardVersion')
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.jsch_version = '0.1.55'
|
2019-05-08 12:04:49 +00:00
|
|
|
ext.protonj_version = '0.33.0' // Overide Artemis version
|
2018-05-09 12:37:04 +00:00
|
|
|
ext.snappy_version = '0.4'
|
2019-09-03 15:40:08 +00:00
|
|
|
ext.class_graph_version = constants.getProperty('classgraphVersion')
|
2018-05-24 17:26:55 +00:00
|
|
|
ext.jcabi_manifests_version = '1.1'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.picocli_version = '3.9.6'
|
2019-12-09 14:17:48 +00:00
|
|
|
ext.commons_lang_version = '3.9'
|
2018-11-20 14:01:39 +00:00
|
|
|
ext.commons_io_version = '2.6'
|
2019-06-20 15:19:16 +00:00
|
|
|
ext.controlsfx_version = '8.40.15'
|
2020-02-14 17:31:02 +00:00
|
|
|
ext.detekt_version = constants.getProperty('detektVersion')
|
2020-11-20 10:21:53 +00:00
|
|
|
ext.docker_java_version = constants.getProperty("dockerJavaVersion")
|
2020-02-20 17:01:24 +00:00
|
|
|
if (JavaVersion.current().isJava8()) {
|
|
|
|
ext.fontawesomefx_commons_version = '8.15'
|
|
|
|
ext.fontawesomefx_fontawesome_version = '4.7.0-5'
|
|
|
|
} else {
|
2019-09-24 11:09:01 +00:00
|
|
|
// has been compiled by a more recent version of the Java Runtime (class file version 55.0)
|
|
|
|
ext.fontawesomefx_commons_version = '11.0'
|
|
|
|
ext.fontawesomefx_fontawesome_version = '4.7.0-11'
|
|
|
|
}
|
2016-01-05 10:44:38 +00:00
|
|
|
|
2018-06-18 11:40:35 +00:00
|
|
|
// Name of the IntelliJ SDK created for the deterministic Java rt.jar.
|
|
|
|
// ext.deterministic_idea_sdk = '1.8 (Deterministic)'
|
2018-06-11 19:34:59 +00:00
|
|
|
|
2018-06-14 14:18:44 +00:00
|
|
|
// Update 121 is required for ObjectInputFilter.
|
|
|
|
// Updates [131, 161] also have zip compression bugs on MacOS (High Sierra).
|
2018-09-19 15:34:03 +00:00
|
|
|
// when the java version in NodeStartup.hasMinimumJavaVersion() changes, so must this check
|
2019-03-07 12:13:18 +00:00
|
|
|
ext.java8_minUpdateVersion = constants.getProperty('java8MinUpdateVersion')
|
2019-09-03 15:40:08 +00:00
|
|
|
ext.corda_revision = {
|
|
|
|
try {
|
|
|
|
"git rev-parse HEAD".execute().text.trim()
|
|
|
|
} catch (Exception ignored) {
|
|
|
|
logger.warn("git is unavailable in build environment")
|
|
|
|
"unknown"
|
|
|
|
}
|
|
|
|
}()
|
2020-05-14 11:57:59 +00:00
|
|
|
ext.corda_docs_link = "https://docs.corda.net/docs/corda-os/$baseVersion"
|
2015-11-03 12:37:19 +00:00
|
|
|
repositories {
|
2016-11-21 17:09:48 +00:00
|
|
|
mavenLocal()
|
2020-07-17 08:39:45 +00:00
|
|
|
// Use system environment to activate caching with Artifactory,
|
|
|
|
// because it is actually easier to pass that during parallel build.
|
|
|
|
// NOTE: it has to be a name of a virtual repository with all
|
|
|
|
// required remote or local repositories!
|
|
|
|
if (System.getenv("CORDA_USE_CACHE")) {
|
|
|
|
maven {
|
|
|
|
name "R3 Maven remote repositories"
|
|
|
|
url "${artifactory_contextUrl}/${System.getenv("CORDA_USE_CACHE")}"
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
credentials {
|
|
|
|
username = System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
|
|
|
password = System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
maven {
|
|
|
|
url "${artifactory_contextUrl}/corda-dependencies-dev"
|
2020-08-03 20:28:26 +00:00
|
|
|
content {
|
|
|
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
|
|
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
|
|
|
}
|
2020-07-17 08:39:45 +00:00
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "${artifactory_contextUrl}/corda-releases"
|
2020-08-03 20:28:26 +00:00
|
|
|
content {
|
|
|
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
|
|
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
2018-03-05 13:01:26 +00:00
|
|
|
}
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2018-03-28 07:40:28 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
|
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-10-09 19:08:08 +00:00
|
|
|
classpath "net.corda.plugins:cordapp:$gradle_plugins_version"
|
2018-05-17 09:09:12 +00:00
|
|
|
classpath "net.corda.plugins:api-scanner:$gradle_plugins_version"
|
2018-07-19 15:35:36 +00:00
|
|
|
classpath "net.corda.plugins:jar-filter:$gradle_plugins_version"
|
2018-06-11 19:34:59 +00:00
|
|
|
classpath "net.sf.proguard:proguard-gradle:$proguard_version"
|
2017-09-26 16:32:05 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.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-05-18 14:58:35 +00:00
|
|
|
classpath "net.i2p.crypto:eddsa:$eddsa_version" // Needed for ServiceIdentityGenerator in the build environment.
|
2017-10-20 16:58:15 +00:00
|
|
|
classpath "org.owasp:dependency-check-gradle:${dependency_checker_version}"
|
2017-12-07 17:22:22 +00:00
|
|
|
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:$artifactory_plugin_version"
|
2019-05-20 13:26:42 +00:00
|
|
|
// Capsule gradle plugin forked and maintained locally to support Gradle 5.x
|
|
|
|
// See https://github.com/corda/gradle-capsule-plugin
|
|
|
|
classpath "us.kirchmeier:gradle-capsule-plugin:1.0.4_r3"
|
2020-08-06 21:13:57 +00:00
|
|
|
classpath group: "com.r3.testing", name: "gradle-distributed-testing-plugin", version: '1.3.0'
|
2020-04-01 10:03:01 +00:00
|
|
|
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.8"
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
2020-08-05 11:48:29 +00:00
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
|
|
|
|
}
|
2015-11-03 12:37:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-02 17:15:11 +00:00
|
|
|
plugins {
|
2018-09-13 09:55:52 +00:00
|
|
|
// Add the shadow plugin to the plugins classpath for the entire project.
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4' apply false
|
2019-05-17 10:44:10 +00:00
|
|
|
id "com.gradle.build-scan" version "2.2.1"
|
2019-12-11 17:50:27 +00:00
|
|
|
id "org.ajoberstar.grgit" version "4.0.0"
|
2020-01-31 16:47:24 +00:00
|
|
|
}
|
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'
|
2017-12-07 17:22:22 +00:00
|
|
|
apply plugin: 'com.jfrog.artifactory'
|
2020-08-05 11:48:29 +00:00
|
|
|
apply plugin: 'com.r3.testing.distributed-testing'
|
2016-08-02 17:15:11 +00:00
|
|
|
|
2019-12-11 17:50:27 +00:00
|
|
|
|
|
|
|
// If the command line project option -PversionFromGit is added to the gradle invocation, we'll resolve
|
|
|
|
// the latest git commit hash and timestamp and create a version postfix from that
|
|
|
|
if (project.hasProperty("versionFromGit")){
|
|
|
|
ext.versionSuffix = "${grgit.head().dateTime.format("yyyyMMdd_HHmmss")}-${grgit.head().abbreviatedId}"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Need the `toString()` call on these, because they need to be converted from GStringImpl to Java Strings.
|
|
|
|
if (ext.versionSuffix != ""){
|
|
|
|
ext.corda_release_version = "${ext.baseVersion}-${ext.versionSuffix}".toString()
|
|
|
|
} else {
|
|
|
|
ext.corda_release_version = "${ext.baseVersion}".toString()
|
|
|
|
}
|
|
|
|
|
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'
|
2019-09-18 09:26:26 +00:00
|
|
|
|
2019-10-30 17:24:34 +00:00
|
|
|
logger.lifecycle("Java version: {}", JavaVersion.current())
|
2019-09-18 09:26:26 +00:00
|
|
|
sourceCompatibility = VERSION_1_8
|
2020-02-20 17:01:24 +00:00
|
|
|
targetCompatibility = JavaVersion.current().isJava8() ? VERSION_1_8 : VERSION_11
|
2019-10-30 17:24:34 +00:00
|
|
|
logger.lifecycle("Java source compatibility: {}", sourceCompatibility)
|
|
|
|
logger.lifecycle("Java target compatibility: {}", targetCompatibility)
|
|
|
|
logger.lifecycle("Quasar version: {}", quasar_version)
|
|
|
|
logger.lifecycle("Quasar classifier: {}", quasar_classifier.toString())
|
2020-01-14 08:36:00 +00:00
|
|
|
logger.lifecycle("Building Corda version: {}", corda_release_version)
|
2019-05-20 15:16:49 +00:00
|
|
|
|
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: 'jacoco'
|
2017-10-20 16:58:15 +00:00
|
|
|
apply plugin: 'org.owasp.dependencycheck'
|
2018-03-28 07:40:28 +00:00
|
|
|
apply plugin: 'kotlin-allopen'
|
2020-04-01 10:03:01 +00:00
|
|
|
apply plugin: 'org.sonarqube'
|
2018-03-28 07:40:28 +00:00
|
|
|
|
|
|
|
allOpen {
|
|
|
|
annotations(
|
|
|
|
"javax.persistence.Entity",
|
|
|
|
"javax.persistence.Embeddable",
|
|
|
|
"javax.persistence.MappedSuperclass"
|
|
|
|
)
|
|
|
|
}
|
2016-08-02 17:15:11 +00:00
|
|
|
|
2017-10-20 16:58:15 +00:00
|
|
|
dependencyCheck {
|
|
|
|
suppressionFile = '.ci/dependency-checker/suppressedLibraries.xml'
|
|
|
|
cveValidForHours = 1
|
|
|
|
format = 'ALL'
|
2019-03-20 13:39:51 +00:00
|
|
|
failOnError = project.property('owasp.failOnError')
|
2018-11-07 09:00:19 +00:00
|
|
|
// by default CVSS is '11' which passes everything. Set between 0-10 to catch vulnerable deps
|
2019-03-20 13:39:51 +00:00
|
|
|
failBuildOnCVSS = project.property('owasp.failBuildOnCVSS').toFloat()
|
2018-12-12 13:02:50 +00:00
|
|
|
|
|
|
|
analyzers {
|
|
|
|
assemblyEnabled = false
|
|
|
|
nuspecEnabled = false
|
|
|
|
nugetconfEnabled = false
|
|
|
|
}
|
2017-10-20 16:58:15 +00:00
|
|
|
}
|
2019-09-18 09:26:26 +00:00
|
|
|
sourceCompatibility = VERSION_1_8
|
2020-02-20 17:01:24 +00:00
|
|
|
targetCompatibility = JavaVersion.current().isJava8() ? VERSION_1_8 : VERSION_11
|
2016-08-02 17:15:11 +00:00
|
|
|
|
2019-09-18 09:26:26 +00:00
|
|
|
jacoco {
|
|
|
|
// JDK11 official support (https://github.com/jacoco/jacoco/releases/tag/v0.8.3)
|
2019-10-04 13:28:42 +00:00
|
|
|
toolVersion = "0.8.3"
|
2019-09-18 09:26:26 +00:00
|
|
|
}
|
2019-09-19 09:50:29 +00:00
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(JavaCompile).configureEach {
|
2019-05-20 15:16:49 +00:00
|
|
|
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" << "-Xlint:-options" << "-parameters"
|
2019-11-06 17:37:06 +00:00
|
|
|
options.compilerArgs << '-XDenableSunApiLintControl'
|
2019-09-11 15:34:51 +00:00
|
|
|
if (warnings_as_errors) {
|
|
|
|
// We cannot fail the build on compiler warnings because we have java warnings that you cannot disable:
|
|
|
|
// Signal is internal proprietary API and may be removed in a future release
|
|
|
|
// otherwise we should have the following line here:
|
|
|
|
// options.compilerArgs << "-Werror"
|
|
|
|
}
|
2018-08-06 10:59:30 +00:00
|
|
|
options.encoding = 'UTF-8'
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
2017-04-19 14:39:53 +00:00
|
|
|
kotlinOptions {
|
2018-04-20 14:03:07 +00:00
|
|
|
languageVersion = "1.2"
|
|
|
|
apiVersion = "1.2"
|
2020-02-20 17:01:24 +00:00
|
|
|
jvmTarget = VERSION_1_8
|
2017-04-19 14:39:53 +00:00
|
|
|
javaParameters = true // Useful for reflection.
|
2018-06-18 14:36:33 +00:00
|
|
|
freeCompilerArgs = ['-Xjvm-default=compatibility']
|
2019-09-11 15:34:51 +00:00
|
|
|
allWarningsAsErrors = warnings_as_errors
|
2017-04-19 14:39:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-19 09:50:29 +00:00
|
|
|
tasks.register('compileAll') { task ->
|
|
|
|
task.dependsOn tasks.withType(AbstractCompile)
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(Jar).configureEach { task ->
|
2017-10-06 14:37:33 +00:00
|
|
|
// Includes War and Ear
|
2017-04-19 10:05:27 +00:00
|
|
|
manifest {
|
|
|
|
attributes('Corda-Release-Version': corda_release_version)
|
|
|
|
attributes('Corda-Platform-Version': corda_platform_version)
|
|
|
|
attributes('Corda-Revision': corda_revision)
|
2022-01-18 11:12:32 +00:00
|
|
|
attributes('Corda-Vendor': corda_build_edition)
|
2017-10-06 14:37:33 +00:00
|
|
|
attributes('Automatic-Module-Name': "net.corda.${task.project.name.replaceAll('-', '.')}")
|
2020-05-14 11:57:59 +00:00
|
|
|
attributes('Corda-Docs-Link': corda_docs_link)
|
2017-04-19 10:05:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-17 09:34:01 +00:00
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(Test).configureEach {
|
2020-09-15 12:18:46 +00:00
|
|
|
forkEvery = 20
|
2019-09-18 09:26:26 +00:00
|
|
|
ignoreFailures = project.hasProperty('tests.ignoreFailures') ? project.property('tests.ignoreFailures').toBoolean() : false
|
2018-08-23 08:57:05 +00:00
|
|
|
failFast = project.hasProperty('tests.failFast') ? project.property('tests.failFast').toBoolean() : false
|
2018-05-19 11:59:28 +00:00
|
|
|
|
2017-05-05 16:30:51 +00:00
|
|
|
// Prevent the project from creating temporary files outside of the build directory.
|
2018-06-11 19:34:59 +00:00
|
|
|
systemProperty 'java.io.tmpdir', buildDir.absolutePath
|
2018-02-12 12:10:03 +00:00
|
|
|
|
2019-05-20 13:26:42 +00:00
|
|
|
maxHeapSize = "1g"
|
|
|
|
|
2018-02-23 20:48:39 +00:00
|
|
|
if (project.path.startsWith(':experimental') && System.getProperty("experimental.test.enable") == null) {
|
|
|
|
enabled = false
|
|
|
|
}
|
2018-09-26 12:38:23 +00:00
|
|
|
|
|
|
|
// Required to use Gradle build cache (until Gradle 5.0 is released with default value of "append" set to false)
|
|
|
|
// See https://github.com/gradle/gradle/issues/5269 and https://github.com/gradle/gradle/pull/6419
|
|
|
|
extensions.configure(TypeOf.typeOf(JacocoTaskExtension)) { ex ->
|
|
|
|
ex.append = false
|
|
|
|
}
|
2019-07-02 18:38:33 +00:00
|
|
|
|
2019-09-03 15:40:08 +00:00
|
|
|
maxParallelForks = (System.env.CORDA_TESTING_FORKS == null) ? 1 : "$System.env.CORDA_TESTING_FORKS".toInteger()
|
2019-07-02 18:38:33 +00:00
|
|
|
|
|
|
|
systemProperty 'java.security.egd', 'file:/dev/./urandom'
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(Test).configureEach {
|
2019-09-03 15:40:08 +00:00
|
|
|
if (name.contains("integrationTest")) {
|
|
|
|
maxParallelForks = (System.env.CORDA_INT_TESTING_FORKS == null) ? 1 : "$System.env.CORDA_INT_TESTING_FORKS".toInteger()
|
2019-07-02 18:38:33 +00:00
|
|
|
}
|
2017-05-05 16:30:51 +00:00
|
|
|
}
|
|
|
|
|
2019-10-30 17:24:34 +00:00
|
|
|
if (jdkClassifier) {
|
|
|
|
jar {
|
|
|
|
// JDK11 built and published artifacts to include classifier
|
2019-10-08 09:45:10 +00:00
|
|
|
archiveClassifier = jdkClassifier
|
2019-10-30 17:24:34 +00:00
|
|
|
}
|
2019-10-08 09:45:10 +00:00
|
|
|
}
|
|
|
|
|
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()
|
2022-04-11 11:21:49 +00:00
|
|
|
// Prevents cache giving use the wrong artemis
|
|
|
|
mavenCentral {
|
|
|
|
content {
|
|
|
|
includeGroup 'org.apache.activemq'
|
|
|
|
}
|
|
|
|
}
|
2020-07-17 08:39:45 +00:00
|
|
|
// Use system environment to activate caching with Artifactory,
|
|
|
|
// because it is actually easier to pass that during parallel build.
|
|
|
|
// NOTE: it has to be a name of a virtual repository with all
|
|
|
|
// required remote or local repositories!
|
|
|
|
if (System.getenv("CORDA_USE_CACHE")) {
|
|
|
|
maven {
|
|
|
|
name "R3 Maven remote repositories"
|
|
|
|
url "${artifactory_contextUrl}/${System.getenv("CORDA_USE_CACHE")}"
|
|
|
|
authentication {
|
|
|
|
basic(BasicAuthentication)
|
|
|
|
}
|
|
|
|
credentials {
|
|
|
|
username = System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
|
|
|
password = System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-08-03 20:28:26 +00:00
|
|
|
maven {
|
|
|
|
url "${artifactory_contextUrl}/corda-dependencies"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
|
|
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
|
|
|
includeGroup 'co.paralleluniverse'
|
|
|
|
includeGroup 'org.crashub'
|
|
|
|
includeGroup 'com.github.bft-smart'
|
2022-01-11 12:57:20 +00:00
|
|
|
includeGroup 'com.github.detro'
|
2020-08-03 20:28:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "${artifactory_contextUrl}/corda-dev"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
|
|
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url 'https://repo.gradle.org/gradle/libs-releases'
|
|
|
|
content {
|
|
|
|
includeGroup 'org.gradle'
|
|
|
|
includeGroup 'com.github.detro'
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 17:56:09 +00:00
|
|
|
maven {
|
|
|
|
url "${artifactory_contextUrl}/corda-releases"
|
|
|
|
content {
|
|
|
|
includeModule('net.corda', 'corda-shell')
|
|
|
|
}
|
|
|
|
}
|
2020-07-17 08:39:45 +00:00
|
|
|
mavenCentral()
|
|
|
|
jcenter()
|
|
|
|
}
|
2017-02-17 19:51:54 +00:00
|
|
|
}
|
2017-03-30 19:59:50 +00:00
|
|
|
|
2017-09-22 15:45:48 +00:00
|
|
|
configurations {
|
2018-05-03 11:12:54 +00:00
|
|
|
all {
|
|
|
|
resolutionStrategy {
|
|
|
|
// Force dependencies to use the same version of Kotlin as Corda.
|
|
|
|
force "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
force "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
2018-05-15 11:35:00 +00:00
|
|
|
|
2018-07-17 11:31:44 +00:00
|
|
|
// Force dependencies to use the same version of Guava as Corda.
|
|
|
|
force "com.google.guava:guava:$guava_version"
|
|
|
|
|
2018-05-15 11:35:00 +00:00
|
|
|
// Demand that everything uses our given version of Netty.
|
|
|
|
eachDependency { details ->
|
|
|
|
if (details.requested.group == 'io.netty' && details.requested.name.startsWith('netty-')) {
|
2019-12-18 16:54:39 +00:00
|
|
|
if (details.requested.name.startsWith('netty-tcnative')){
|
|
|
|
details.useVersion tcnative_version
|
|
|
|
} else {
|
|
|
|
details.useVersion netty_version
|
|
|
|
}
|
2018-05-15 11:35:00 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-03 11:12:54 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 15:45:48 +00:00
|
|
|
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'
|
2018-08-28 17:40:10 +00:00
|
|
|
// Remove any transitive dependency on Logback (e.g. Liquibase 3.6 introduces this dependency)
|
|
|
|
exclude group: 'ch.qos.logback'
|
2018-05-15 11:35:00 +00:00
|
|
|
|
|
|
|
// Netty-All is an uber-jar which contains every Netty module.
|
|
|
|
// Exclude it to force us to use the individual Netty modules instead.
|
|
|
|
exclude group: 'io.netty', module: 'netty-all'
|
2017-09-22 15:45:48 +00:00
|
|
|
}
|
|
|
|
runtime {
|
|
|
|
// We never want isolated.jar on classPath, since we want to test jar being dynamically loaded as an attachment
|
|
|
|
exclude module: 'isolated'
|
|
|
|
}
|
2017-03-30 19:59:50 +00:00
|
|
|
}
|
2016-08-02 17:15:11 +00:00
|
|
|
}
|
2020-04-01 10:03:01 +00:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
|
|
|
property "sonar.projectName", "Corda"
|
|
|
|
property "sonar.projectKey", "corda"
|
|
|
|
property 'sonar.tests', '**/src/test/**,**/src/smoke-test/**,**/src/integration-test/**,**/src/integration-test-slow/**'
|
|
|
|
property 'sonar.coverage.jacoco.xmlReportPaths', "${rootDir.path}/build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml"
|
|
|
|
property 'detekt.sonar.kotlin.baseline.path', "${rootDir.path}/detekt-baseline.xml"
|
|
|
|
property 'detekt.sonar.kotlin.config.path', "${rootDir.path}/detekt-config.yml"
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2019-09-19 17:41:06 +00:00
|
|
|
configurations {
|
|
|
|
detekt
|
|
|
|
}
|
|
|
|
|
2016-11-04 17:53:37 +00:00
|
|
|
// Required for building out the fat JAR.
|
2016-11-04 17:15:06 +00:00
|
|
|
dependencies {
|
2017-10-09 19:08:08 +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-07-26 13:48:34 +00:00
|
|
|
// Set to corda compile to ensure it exists now deploy nodes no longer relies on build
|
2017-10-09 19:08:08 +00:00
|
|
|
compile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
2019-09-26 09:20:49 +00:00
|
|
|
compile project(path: ":testing:testserver:testcapsule:", configuration: 'runtimeArtifacts')
|
2017-03-09 17:11:37 +00:00
|
|
|
|
|
|
|
// For the buildCordappDependenciesJar task
|
2017-10-09 19:08:08 +00:00
|
|
|
runtime project(':client:jfx')
|
|
|
|
runtime project(':client:mock')
|
|
|
|
runtime project(':client:rpc')
|
|
|
|
runtime project(':core')
|
|
|
|
runtime project(':confidential-identities')
|
2018-12-19 18:02:51 +00:00
|
|
|
runtime project(':finance:workflows')
|
|
|
|
runtime project(':finance:contracts')
|
2019-09-26 09:20:49 +00:00
|
|
|
runtime project(':testing:testserver')
|
2017-03-09 17:11:37 +00:00
|
|
|
testCompile project(':test-utils')
|
2019-09-19 17:41:06 +00:00
|
|
|
detekt 'io.gitlab.arturbosch.detekt:detekt-cli:1.0.1'
|
2016-11-04 17:15:06 +00:00
|
|
|
}
|
|
|
|
|
2017-09-27 22:49:20 +00:00
|
|
|
jar {
|
|
|
|
// Prevent the root project from building an unwanted dummy CorDapp.
|
|
|
|
enabled = false
|
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
})
|
|
|
|
}
|
2020-04-01 10:03:01 +00:00
|
|
|
afterEvaluate {
|
|
|
|
classDirectories = files(classDirectories.files.collect {
|
|
|
|
fileTree(dir: it,
|
|
|
|
// these exclusions are necessary because jacoco gets confused by same class names
|
|
|
|
// which occur due to deterministic versions of non deterministic classes
|
2020-11-05 22:05:29 +00:00
|
|
|
exclude: ['**/net/corda/core/crypto/DigestSupplier**',
|
2020-04-01 10:03:01 +00:00
|
|
|
'**/net/corda/core/crypto/DelegatingSecureRandomService',
|
|
|
|
'**/net/corda/core/internal/ThreadLocalToggleField**',
|
|
|
|
'**/net/corda/core/internal/InheritableThreadLocalToggleField**',
|
|
|
|
'**/net/corda/core/internal/ToggleField**',
|
|
|
|
'net/corda/core/internal/rules/StateContractValidationEnforcementRule**',
|
|
|
|
'net/corda/core/internal/SimpleToggleField**',
|
|
|
|
'net/corda/core/serialization/SerializationFactory**',
|
|
|
|
'net/corda/serialization/internal/amqp/AMQPStreams**',
|
|
|
|
'net/corda/serialization/internal/amqp/AMQPSerializerFactories**',
|
|
|
|
'net/corda/serialization/internal/amqp/AMQPSerializationThreadContext**',
|
|
|
|
'net/corda/serialization/internal/ByteBufferStreams**',
|
|
|
|
'net/corda/serialization/internal/model/DefaultCacheProvider**',
|
|
|
|
'net/corda/serialization/internal/DefaultWhitelist**'
|
|
|
|
])
|
|
|
|
})
|
|
|
|
}
|
2016-07-21 16:40:57 +00:00
|
|
|
}
|
|
|
|
|
2020-02-16 08:21:05 +00:00
|
|
|
tasks.register('detekt', JavaExec) {
|
2019-09-19 17:41:06 +00:00
|
|
|
def input = "$projectDir"
|
|
|
|
def config = "$projectDir/detekt-config.yml"
|
|
|
|
def baseline = "$projectDir/detekt-baseline.xml"
|
2020-02-16 08:21:05 +00:00
|
|
|
def detektPluginsJar = project(':detekt-plugins').tasks.jar
|
|
|
|
def plugins = detektPluginsJar.outputs.files.singleFile
|
2020-02-14 17:31:02 +00:00
|
|
|
def params = ['-i', input, '-c', config, '-b', baseline, '--plugins', plugins]
|
2020-02-16 08:21:05 +00:00
|
|
|
inputs.files(detektPluginsJar, config, baseline)
|
|
|
|
main = "io.gitlab.arturbosch.detekt.cli.Main"
|
|
|
|
classpath = configurations.detekt
|
2019-09-19 17:41:06 +00:00
|
|
|
args(params)
|
|
|
|
}
|
|
|
|
|
2020-02-16 08:21:05 +00:00
|
|
|
tasks.register('detektBaseline', JavaExec) {
|
2019-09-19 17:41:06 +00:00
|
|
|
main = "io.gitlab.arturbosch.detekt.cli.Main"
|
|
|
|
classpath = configurations.detekt
|
|
|
|
def input = "$projectDir"
|
2019-10-15 14:49:31 +00:00
|
|
|
def config = "$projectDir/detekt-config.yml, $projectDir/detekt-baseline-config.yml"
|
2019-09-19 17:41:06 +00:00
|
|
|
def baseline = "$projectDir/detekt-baseline.xml"
|
|
|
|
def params = ['-i', input, '-c', config, '-b', baseline, '--create-baseline']
|
|
|
|
args(params)
|
|
|
|
}
|
|
|
|
|
2020-07-07 08:08:58 +00:00
|
|
|
tasks.withType(Test).configureEach {
|
2016-07-21 16:40:57 +00:00
|
|
|
reports.html.destination = file("${reporting.baseDir}/${name}")
|
|
|
|
}
|
|
|
|
|
2018-04-27 08:52:25 +00:00
|
|
|
task testReport(type: TestReport) {
|
|
|
|
destinationDir = file("$buildDir/reports/allTests")
|
|
|
|
// Include the results from the `test` task in all subprojects
|
|
|
|
reportOn subprojects*.test
|
|
|
|
}
|
|
|
|
|
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')
|
2018-06-11 19:34:59 +00:00
|
|
|
publications = [
|
|
|
|
'corda-jfx',
|
|
|
|
'corda-mock',
|
|
|
|
'corda-rpc',
|
|
|
|
'corda-core',
|
|
|
|
'corda-core-deterministic',
|
2018-09-07 14:07:06 +00:00
|
|
|
'corda-deterministic-verifier',
|
2019-11-05 13:44:18 +00:00
|
|
|
'corda-deserializers-djvm',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda',
|
2018-12-19 18:02:51 +00:00
|
|
|
'corda-finance-workflows',
|
|
|
|
'corda-finance-contracts',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-node',
|
|
|
|
'corda-node-api',
|
2019-11-05 13:44:18 +00:00
|
|
|
'corda-node-djvm',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-test-common',
|
2020-03-03 15:55:17 +00:00
|
|
|
'corda-core-test-utils',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-test-utils',
|
2019-06-18 09:57:20 +00:00
|
|
|
'corda-test-db',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-jackson',
|
2019-09-26 09:20:49 +00:00
|
|
|
'corda-testserver-impl',
|
|
|
|
'corda-testserver',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-node-driver',
|
|
|
|
'corda-confidential-identities',
|
|
|
|
'corda-shell',
|
2018-06-29 09:32:37 +00:00
|
|
|
'corda-tools-shell-cli',
|
2018-06-11 19:34:59 +00:00
|
|
|
'corda-serialization',
|
|
|
|
'corda-serialization-deterministic',
|
2019-11-05 13:44:18 +00:00
|
|
|
'corda-serialization-djvm',
|
2018-06-12 17:08:31 +00:00
|
|
|
'corda-tools-blob-inspector',
|
2018-06-26 09:46:04 +00:00
|
|
|
'corda-tools-explorer',
|
2018-09-11 12:36:38 +00:00
|
|
|
'corda-tools-network-bootstrapper',
|
2018-10-10 09:04:22 +00:00
|
|
|
'corda-tools-cliutils',
|
2018-11-12 13:38:35 +00:00
|
|
|
'corda-common-configuration-parsing',
|
2019-04-11 09:04:16 +00:00
|
|
|
'corda-common-validation',
|
2019-07-02 10:32:48 +00:00
|
|
|
'corda-common-logging',
|
2019-10-04 13:28:42 +00:00
|
|
|
'corda-tools-network-builder',
|
|
|
|
'corda-tools-checkpoint-agent'
|
2018-06-11 19:34:59 +00:00
|
|
|
]
|
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
|
|
|
|
}
|
2017-06-26 17:07:56 +00:00
|
|
|
|
|
|
|
artifactory {
|
|
|
|
publish {
|
2018-03-05 13:01:26 +00:00
|
|
|
contextUrl = artifactory_contextUrl
|
2017-06-26 17:07:56 +00:00
|
|
|
repository {
|
2017-10-11 11:41:11 +00:00
|
|
|
repoKey = 'corda-dev'
|
2018-09-13 10:14:19 +00:00
|
|
|
username = System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
2017-06-26 17:07:56 +00:00
|
|
|
password = System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
|
|
|
}
|
2017-10-11 11:41:11 +00:00
|
|
|
|
2017-06-26 17:07:56 +00:00
|
|
|
defaults {
|
2017-10-11 11:41:11 +00:00
|
|
|
// Root project applies the plugin (for this block) but does not need to be published
|
2018-07-11 12:28:01 +00:00
|
|
|
if (project != rootProject) {
|
2017-10-11 11:41:11 +00:00
|
|
|
publications(project.extensions.publish.name())
|
|
|
|
}
|
2017-06-26 17:07:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-29 15:55:26 +00:00
|
|
|
|
2020-07-15 09:46:29 +00:00
|
|
|
tasks.register('generateApi', net.corda.plugins.apiscanner.GenerateApi) {
|
2017-09-29 15:55:26 +00:00
|
|
|
baseName = "api-corda"
|
|
|
|
}
|
2018-01-17 13:08:00 +00:00
|
|
|
|
|
|
|
// This exists to reduce CI build time when the envvar is set (can save up to 40 minutes)
|
2018-07-11 12:28:01 +00:00
|
|
|
if (file('corda-docs-only-build').exists() || (System.getenv('CORDA_DOCS_ONLY_BUILD') != null)) {
|
|
|
|
if (file('corda-docs-only-build').exists()) {
|
2018-01-31 20:46:31 +00:00
|
|
|
logger.info("Tests are disabled due to presence of file 'corda-docs-only-build' in the project root")
|
|
|
|
} else {
|
|
|
|
logger.info("Tests are disabled due to the presence of envvar CORDA_DOCS_ONLY_BUILD")
|
|
|
|
}
|
2018-01-17 13:08:00 +00:00
|
|
|
|
|
|
|
allprojects {
|
|
|
|
test {
|
|
|
|
exclude '*/**'
|
|
|
|
}
|
|
|
|
|
|
|
|
it.afterEvaluate {
|
2018-07-11 12:28:01 +00:00
|
|
|
if (it.tasks.findByName("integrationTest") != null) {
|
2018-01-17 13:08:00 +00:00
|
|
|
integrationTest {
|
|
|
|
exclude '*/**'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
it.afterEvaluate {
|
2018-07-11 12:28:01 +00:00
|
|
|
if (it.tasks.findByName("smokeTest") != null) {
|
2018-01-17 13:08:00 +00:00
|
|
|
smokeTest {
|
|
|
|
exclude '*/**'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-04-30 11:47:04 +00:00
|
|
|
|
|
|
|
wrapper {
|
2020-07-08 10:34:25 +00:00
|
|
|
gradleVersion = '5.6.4'
|
2018-04-30 11:47:04 +00:00
|
|
|
distributionType = Wrapper.DistributionType.ALL
|
|
|
|
}
|
2018-09-26 12:38:23 +00:00
|
|
|
|
|
|
|
buildScan {
|
|
|
|
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
|
|
|
|
termsOfServiceAgree = 'yes'
|
2019-01-13 20:34:22 +00:00
|
|
|
}
|
2019-09-03 15:40:08 +00:00
|
|
|
|
2020-08-05 11:48:29 +00:00
|
|
|
distributedTesting {
|
|
|
|
profilesURL = 'https://raw.githubusercontent.com/corda/infrastructure-profiles/master'
|
|
|
|
|
|
|
|
parallelTestGroups {
|
|
|
|
allParallelIntegrationTest {
|
|
|
|
testGroups 'integrationTest'
|
|
|
|
profile 'generalPurpose.yml'
|
|
|
|
podLogLevel PodLogLevel.INFO
|
|
|
|
distribution DistributeTestsBy.METHOD
|
|
|
|
}
|
|
|
|
allParallelUnitTest {
|
|
|
|
podLogLevel PodLogLevel.INFO
|
|
|
|
testGroups 'test'
|
|
|
|
profile 'generalPurpose.yml'
|
|
|
|
distribution DistributeTestsBy.CLASS
|
|
|
|
}
|
|
|
|
allParallelUnitAndIntegrationTest {
|
|
|
|
testGroups 'test', 'integrationTest'
|
|
|
|
profile 'generalPurpose.yml'
|
|
|
|
distribution DistributeTestsBy.METHOD
|
|
|
|
}
|
|
|
|
allParallelSmokeTest {
|
|
|
|
testGroups 'smokeTest'
|
2020-08-21 10:18:54 +00:00
|
|
|
profile 'regression.yml'
|
2020-08-05 11:48:29 +00:00
|
|
|
distribution DistributeTestsBy.METHOD
|
|
|
|
}
|
|
|
|
allParallelSlowIntegrationTest {
|
|
|
|
testGroups 'slowIntegrationTest'
|
2020-08-21 10:18:54 +00:00
|
|
|
profile 'regression.yml'
|
2020-08-05 11:48:29 +00:00
|
|
|
distribution DistributeTestsBy.METHOD
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ignoredTests = [
|
|
|
|
':core-deterministic:testing:data:test'
|
|
|
|
]
|
2019-09-12 13:08:50 +00:00
|
|
|
}
|