mirror of
https://github.com/corda/corda.git
synced 2025-02-21 17:56:54 +00:00
Put IRS spring whatever back on classpath
This commit is contained in:
parent
69bfc9b437
commit
58f76ee2da
@ -53,6 +53,8 @@ dependencies {
|
||||
testCompile project(':node-driver')
|
||||
testCompile "junit:junit:$junit_version"
|
||||
testCompile "org.assertj:assertj-core:${assertj_version}"
|
||||
|
||||
integrationTestCompile project(path: ":samples:irs-demo:web", configuration: "demoArtifacts")
|
||||
}
|
||||
|
||||
bootRepackage {
|
||||
|
@ -44,6 +44,10 @@ apply plugin: 'org.springframework.boot'
|
||||
apply plugin: 'project-report'
|
||||
apply plugin: 'application'
|
||||
|
||||
configurations {
|
||||
demoArtifacts.extendsFrom testRuntime
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile('org.springframework.boot:spring-boot-starter-web') {
|
||||
exclude module: "spring-boot-starter-logging"
|
||||
@ -77,3 +81,12 @@ task deployWebapps(type: Copy, dependsOn: ['jar', 'bootRepackage']) {
|
||||
}
|
||||
into ext.webappDir
|
||||
}
|
||||
|
||||
task demoJar(type: Jar) {
|
||||
classifier "test"
|
||||
from sourceSets.test.output
|
||||
}
|
||||
|
||||
artifacts {
|
||||
demoArtifacts demoJar
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user