File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
samples/springboot2/pet-store Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,10 @@ repositories {
1111
1212dependencies {
1313 compile (
14- ' org.springframework.boot:spring-boot-starter-web:2.1.1.RELEASE' ,
15- ' com.amazonaws.serverless:aws-serverless-java-container-spring:[1.0,)' ,
14+ implementation(' org.springframework.boot:spring-boot-starter-web:2.1.1.RELEASE' ) {
15+ exclude group : ' org.springframework.boot' , module : ' spring-boot-starter-tomcat'
16+ },
17+ ' com.amazonaws.serverless:aws-serverless-java-container-springboot2:[1.0,)' ,
1618 ' io.symphonia:lambda-logging:1.0.1'
1719 )
1820 testCompile(" junit:junit" )
Original file line number Diff line number Diff line change 1010 <parent >
1111 <groupId >org.springframework.boot</groupId >
1212 <artifactId >spring-boot-starter-parent</artifactId >
13- <version >2.1.1 .RELEASE</version >
13+ <version >2.1.8 .RELEASE</version >
1414 </parent >
1515
1616 <properties >
2222 <dependency >
2323 <groupId >org.springframework.boot</groupId >
2424 <artifactId >spring-boot-starter-web</artifactId >
25+ <exclusions >
26+ <exclusion >
27+ <groupId >org.springframework.boot</groupId >
28+ <artifactId >spring-boot-starter-tomcat</artifactId >
29+ </exclusion >
30+ </exclusions >
2531 </dependency >
2632
2733 <dependency >
2834 <groupId >com.amazonaws.serverless</groupId >
29- <artifactId >aws-serverless-java-container-spring </artifactId >
35+ <artifactId >aws-serverless-java-container-springboot2 </artifactId >
3036 <version >[0.1,)</version >
3137 </dependency >
3238
You can’t perform that action at this time.
0 commit comments