mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
1e227fdfc4
* NOTICK - Don't know what the JIRA is but wanted to share. * Updates to resolve bukld issues * NOTICK: Fixed JDK11 version to prevent capsule version error * ENT-6711: Added comment for use of jackson_kotlin_version. * ENT-6711: Avoid deprecation warning, switched to the default method. Co-authored-by: Chris Cochrane <chris.cochrane@r3.com> Co-authored-by: Adel El-Beik <adel.el-beik@r3.com>
104 lines
3.8 KiB
Groovy
104 lines
3.8 KiB
Groovy
plugins {
|
|
id "org.springframework.boot" version "1.5.21.RELEASE"
|
|
id 'io.spring.dependency-management' version '1.0.9.RELEASE' apply false
|
|
}
|
|
|
|
// Spring Boot plugin adds a numerous hardcoded dependencies in the version much lower then Corda expects
|
|
// causing the problems in runtime. Those can be changed by manipulating above properties
|
|
// See https://github.com/spring-gradle-plugins/dependency-management-plugin/blob/master/README.md#changing-the-value-of-a-version-property
|
|
ext['artemis.version'] = "$artemis_version"
|
|
ext['hibernate.version'] = "$hibernate_version"
|
|
ext['selenium.version'] = "$selenium_version"
|
|
// Using jackson_kotlin_version here for JDK11 compatibility with kotlin 1.2.71
|
|
ext['jackson.version'] = "$jackson_kotlin_version"
|
|
ext['dropwizard-metrics.version'] = "$metrics_version"
|
|
ext['mockito.version'] = "$mockito_version"
|
|
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'idea'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = 'net.corda.irs.IRSDemo'
|
|
|
|
sourceSets {
|
|
slowIntegrationTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/integration-test/kotlin')
|
|
}
|
|
}
|
|
systemTest {
|
|
kotlin {
|
|
compileClasspath += main.output + test.output
|
|
runtimeClasspath += main.output + test.output
|
|
srcDir file('src/system-test/kotlin')
|
|
}
|
|
}
|
|
}
|
|
|
|
configurations {
|
|
slowIntegrationTestCompile.extendsFrom testCompile
|
|
slowIntegrationTestRuntimeOnly.extendsFrom testRuntimeOnly
|
|
demoArtifacts.extendsFrom testRuntimeClasspath
|
|
systemTestCompile.extendsFrom testCompile
|
|
}
|
|
|
|
evaluationDependsOn("cordapp")
|
|
evaluationDependsOn("web")
|
|
|
|
dependencies {
|
|
compile "commons-io:commons-io:$commons_io_version"
|
|
compile project(":samples:irs-demo:web")
|
|
compile('org.springframework.boot:spring-boot-starter-web') {
|
|
exclude module: "spring-boot-starter-logging"
|
|
exclude module: "logback-classic"
|
|
}
|
|
|
|
testCompile project(':node-driver')
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
|
testImplementation "junit:junit:$junit_version"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
|
|
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
|
|
|
slowIntegrationTestCompile project(path: ":samples:irs-demo:web", configuration: "demoArtifacts")
|
|
testCompile "com.palantir.docker.compose:docker-compose-rule-junit4:$docker_compose_rule_version"
|
|
testCompile "org.seleniumhq.selenium:selenium-java:$selenium_version"
|
|
testCompile "com.github.detro:ghostdriver:$ghostdriver_version"
|
|
}
|
|
|
|
bootRepackage {
|
|
enabled = false
|
|
}
|
|
|
|
task slowIntegrationTest(type: Test, dependsOn: []) {
|
|
testClassesDirs = sourceSets.slowIntegrationTest.output.classesDirs
|
|
classpath = sourceSets.slowIntegrationTest.runtimeClasspath
|
|
}
|
|
|
|
task systemTest(type: Test, dependsOn: ["cordapp:prepareDockerNodes", "web:generateDockerCompose"]) {
|
|
testClassesDirs = sourceSets.systemTest.output.classesDirs
|
|
classpath = sourceSets.systemTest.runtimeClasspath
|
|
|
|
systemProperty "CORDAPP_DOCKER_COMPOSE", tasks.getByPath("cordapp:prepareDockerNodes").dockerComposePath.toString()
|
|
systemProperty "WEB_DOCKER_COMPOSE", tasks.getByPath("web:generateDockerCompose").dockerComposePath.toString()
|
|
|
|
def phantomJsPath = System.getProperty("phantomjs.binary.path") ?: System.getenv("PHANTOMJS_BINARY_PATH")
|
|
if (phantomJsPath != null) {
|
|
systemProperty "phantomjs.binary.path", phantomJsPath
|
|
}
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
downloadJavadoc = true // defaults to false
|
|
downloadSources = true
|
|
}
|
|
}
|