Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
Add hotfix to stop Tomcat crashes
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan Tong <[email protected]>
  • Loading branch information
bbtong committed Feb 9, 2022
1 parent c62fea3 commit effa9a4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions samples/java/cloudevents/txt-to-pdf-gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '2.6.2'
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
Expand All @@ -16,11 +16,11 @@ repositories {
}

dependencies {
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.2')
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.3')
implementation platform('software.amazon.awssdk:bom:2.17.53')

implementation 'org.springframework.cloud:spring-cloud-function-context:3.2.1'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'io.cloudevents:cloudevents-spring:2.3.0'
implementation 'software.amazon.awssdk:aws-core'
implementation 'software.amazon.awssdk:s3'
Expand Down
2 changes: 1 addition & 1 deletion samples/java/http/request-response-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ repositories {
dependencies {
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.2')

implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'
}
2 changes: 1 addition & 1 deletion templates/java/cloudevents-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ repositories {
dependencies {
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.2')

implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'io.cloudevents:cloudevents-spring:2.3.0'
}
6 changes: 3 additions & 3 deletions templates/java/http-gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.springframework.boot' version '2.6.2'
id 'org.springframework.boot' version '2.6.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
Expand All @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.2')
implementation platform('org.springframework.boot:spring-boot-dependencies:2.6.3')

implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter'
}
2 changes: 1 addition & 1 deletion templates/python/cloudevents/func.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ envs:
- name: MODULE_NAME
value: func
- name: FUNCTION_NAME
value: add
value: main

0 comments on commit effa9a4

Please sign in to comment.