mirror of
https://github.com/corda/corda.git
synced 2025-05-03 01:03:18 +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 project(':node-driver')
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
testCompile "org.assertj:assertj-core:${assertj_version}"
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
||||||
|
|
||||||
|
integrationTestCompile project(path: ":samples:irs-demo:web", configuration: "demoArtifacts")
|
||||||
}
|
}
|
||||||
|
|
||||||
bootRepackage {
|
bootRepackage {
|
||||||
|
@ -44,6 +44,10 @@ apply plugin: 'org.springframework.boot'
|
|||||||
apply plugin: 'project-report'
|
apply plugin: 'project-report'
|
||||||
apply plugin: 'application'
|
apply plugin: 'application'
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
demoArtifacts.extendsFrom testRuntime
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile('org.springframework.boot:spring-boot-starter-web') {
|
compile('org.springframework.boot:spring-boot-starter-web') {
|
||||||
exclude module: "spring-boot-starter-logging"
|
exclude module: "spring-boot-starter-logging"
|
||||||
@ -77,3 +81,12 @@ task deployWebapps(type: Copy, dependsOn: ['jar', 'bootRepackage']) {
|
|||||||
}
|
}
|
||||||
into ext.webappDir
|
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