File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
io.openliberty.springboot.fat40.concurrency.app
io.openliberty.springboot.fat40.mbean.app
io.openliberty.springboot.fat40_fat/fat/src/com/ibm/ws/springboot/support/fat Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,12 @@ apply from: '../wlp-gradle/subprojects/maven-central-mirror.gradle'
27
27
28
28
dependencies {
29
29
implementation(' org.springframework.boot:spring-boot-starter-web' )
30
- providedRuntime(' org.springframework.boot:spring-boot-starter-tomcat' )
30
+ // Should use spring-boot-starter-tomcat as provideCompile, but gradle plugin
31
+ // is putting too much in lib-provided: see https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/409
32
+ // providedCompile('org.springframework.boot:spring-boot-starter-tomcat')
33
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-core' )
34
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-el' )
35
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-websocket' )
31
36
}
32
37
33
38
bootJar {
Original file line number Diff line number Diff line change @@ -28,7 +28,12 @@ apply from: '../wlp-gradle/subprojects/maven-central-mirror.gradle'
28
28
29
29
dependencies {
30
30
implementation(' org.springframework.boot:spring-boot-starter-web' ) // + ':' + sv['springBoot'])
31
- providedRuntime(' org.springframework.boot:spring-boot-starter-tomcat' )
31
+ // Should use spring-boot-starter-tomcat as provideCompile, but gradle plugin
32
+ // is putting too much in lib-provided: see https://github.com/spring-gradle-plugins/dependency-management-plugin/issues/409
33
+ // providedCompile('org.springframework.boot:spring-boot-starter-tomcat')
34
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-core' )
35
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-el' )
36
+ providedRuntime(' org.apache.tomcat.embed:tomcat-embed-websocket' )
32
37
}
33
38
34
39
bootJar {
Original file line number Diff line number Diff line change 63
63
TemplateTests40 .class ,
64
64
ApplicationStartedEventTests40 .class ,
65
65
ConcurrencyAppTests40 .class ,
66
+ ConcurrencyAppTests40War .class ,
66
67
MBeanAppTests40 .class ,
68
+ MBeanAppTests40War .class ,
67
69
JmsSpringBootAppTests40 .class ,
68
70
JmsWebAppTests40 .class
69
71
You can’t perform that action at this time.
0 commit comments