Merge pull request #6653 from corda/filipeoliveira/eg-3402

EG-3402 - Fixed an issue in the irs-demo project that would make builds to always fail
This commit is contained in:
Anurag Garg 2020-08-21 11:53:59 +01:00 committed by GitHub
commit e243e9b315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -50,6 +50,9 @@ repositories {
}
}
evaluationDependsOn("cordapp")
evaluationDependsOn("web")
dependencies {
compile "commons-io:commons-io:$commons_io_version"
compile project(":samples:irs-demo:web")
@ -84,9 +87,6 @@ task slowIntegrationTest(type: Test, dependsOn: []) {
classpath = sourceSets.slowIntegrationTest.runtimeClasspath
}
evaluationDependsOn("cordapp")
evaluationDependsOn("web")
task systemTest(type: Test, dependsOn: ["cordapp:prepareDockerNodes", "web:generateDockerCompose"]) {
testClassesDirs = sourceSets.systemTest.output.classesDirs
classpath = sourceSets.systemTest.runtimeClasspath

View File

@ -92,6 +92,7 @@ dependencies {
jar {
from sourceSets.main.output
dependsOn clientInstall
archiveClassifier = 'thin'
}
def docker_dir = file("$project.buildDir/docker")