-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update to Java21 (#62) General changes: - updated spring boot, spring versions - updated test framework to junit-jupiter - updated maven compiler - updated other dependencies as needed to support java21 Update messaging lib and commons versions Signed-off-by: Angelica Ochoa <[email protected]> * Bug fix: always publish requests or samples even when validation fails (#65) Signed-off-by: Angelica Ochoa <[email protected]> * patch for writing validation report as string (#66) * Fix test layer (#67) Signed-off-by: Angelica Ochoa <[email protected]> * Update SMILE dependencies to 2.0.0.RELEASE (#68) Signed-off-by: Angelica Ochoa <[email protected]> --------- Signed-off-by: Angelica Ochoa <[email protected]>
- Loading branch information
Showing
11 changed files
with
218 additions
and
156 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM maven:3.6.1-jdk-11-slim | ||
FROM maven:3.8.8 | ||
RUN mkdir /request-filter | ||
ADD . /request-filter | ||
WORKDIR /request-filter | ||
RUN mvn clean install | ||
|
||
FROM openjdk:11-slim | ||
FROM openjdk:21 | ||
COPY --from=0 /request-filter/target/smile_request_filter.jar /request-filter/smile_request_filter.jar | ||
ENTRYPOINT ["java"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
jdk: | ||
- openjdk21 | ||
|
||
before_install: | ||
- sdk install maven 3.8.8 | ||
- sdk use maven 3.8.8 | ||
- sdk install java 21.0.2-open | ||
- sdk use java 21.0.2-open | ||
- sdk update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.