-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add: delete old format support add: fix build add: new plugin system add: spring boot 3, update allure, update all libs version, update vaadin, update gradle, update nodejs * add: fix test * add: fix test * add: fix test * add: fix test * add: fix docker image platforms * add: fix docker image platforms * add: enabled/disabled plugins
- Loading branch information
1 parent
650449c
commit 0d7342b
Showing
159 changed files
with
20,538 additions
and
26,032 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
node_modules/ | ||
.helm/ | ||
.github/ | ||
build/ | ||
.idea/ | ||
.gradle/ | ||
tmp/ | ||
tmp/ |
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,19 @@ | ||
# Editor configuration, see http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 4 | ||
max_line_length = 200 | ||
|
||
[*.java] | ||
max_line_length = 180 | ||
|
||
[*.yml] | ||
indent_size = 2 | ||
|
||
[*.yaml] | ||
indent_size = 2 |
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 was deleted.
Oops, something went wrong.
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,12 +1,7 @@ | ||
FROM gradle:6.9.2-jdk11 as build | ||
COPY . . | ||
ARG RELEASE_VERSION=${RELEASE_VERSION:-0.0.0} | ||
RUN gradle -Pversion=docker -i -s --no-daemon bootJar | ||
|
||
FROM openjdk:11.0.15-jre-slim-bullseye as production | ||
COPY --from=build /home/gradle/build/libs/allure-server-docker.jar /allure-server-docker.jar | ||
FROM amazoncorretto:21-alpine | ||
COPY build/libs/*.jar /allure-server-docker.jar | ||
# Set port | ||
EXPOSE ${PORT:-8080} | ||
# Run application | ||
ENV JAVA_OPTS="-Xms256m -Xmx2048m" | ||
ENTRYPOINT ["java", "-Dloader.path=/ext", "-cp", "allure-server-docker.jar", "-Dspring.profiles.active=${SPRING_PROFILES_ACTIVE:default}", "org.springframework.boot.loader.PropertiesLauncher"] | ||
ENTRYPOINT ["java", "-Dloader.path=/ext", "-jar", "allure-server-docker.jar", "-Dspring.profiles.active=${SPRING_PROFILES_ACTIVE:default}"] |
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.