-
-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Java 18 and fix performance issue
- Loading branch information
Johannes Lichtenberger
committed
Mar 30, 2022
1 parent
665e03a
commit e184278
Showing
18 changed files
with
285 additions
and
159 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
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,7 +1,7 @@ | ||
# Stage-1 | ||
# Build jar | ||
|
||
FROM gradle:7.2-jdk17 as builder | ||
FROM gradle:7.4-jdk18 as builder | ||
LABEL maintainer="Johannes Lichtenberger <[email protected]>" | ||
WORKDIR /usr/app/ | ||
|
||
|
@@ -12,7 +12,7 @@ RUN gradle build --refresh-dependencies -x test | |
# Stage-2 | ||
# Copy jar and run the server | ||
|
||
FROM gradle:jdk17-alpine as server | ||
FROM gradle:jdk18-alpine as server | ||
RUN apk update && apk add --no-cache bash && apk add --no-cache gcompat | ||
ENV VERTICLE_FILE sirix-rest-api-*-SNAPSHOT-fat.jar | ||
# Set the location of the verticles | ||
|
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
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
4 changes: 2 additions & 2 deletions
4
bundles/sirix-core/src/main/java/org/sirix/access/trx/node/AfterCommitState.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package org.sirix.access.trx.node; | ||
|
||
public enum AfterCommitState { | ||
KeepOpen, | ||
KEEP_OPEN, | ||
|
||
Close | ||
CLOSE | ||
} |
Oops, something went wrong.