xg
This commit is contained in:
parent
127d21b59e
commit
fe769f0b53
@ -18,7 +18,7 @@ jobs:
|
||||
#token: ''
|
||||
- name: Set Java Action
|
||||
id: steps1
|
||||
uses: https://github.com/actions/setup-java@v3
|
||||
uses: https://github.com/actions/setup-java@v4
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: 20
|
||||
@ -26,12 +26,12 @@ jobs:
|
||||
#cache-dependency-path: .pom.xml
|
||||
-
|
||||
name: Set Maven Action
|
||||
uses: https://github.com/stCarolas/setup-maven@v4.5
|
||||
uses: https://github.com/stCarolas/setup-maven@v5
|
||||
with:
|
||||
maven-version: 3.9.5
|
||||
-
|
||||
name: Cache
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
id: cache1
|
||||
with:
|
||||
path: ~/.m2/repository
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#mvn package -Dmaven.test.skip
|
||||
#RUN mkdir -p target/dependency && (cd target/dependency; jar -xf ../*.jar)
|
||||
#
|
||||
FROM docker.io/eclipse-temurin:20-jre-alpine
|
||||
FROM docker.io/eclipse-temurin:21-jre-alpine
|
||||
WORKDIR /app
|
||||
COPY target/dependency/BOOT-INF/lib /app/lib
|
||||
COPY target/dependency/META-INF /app/META-INF
|
||||
|
||||
23
pom.xml
23
pom.xml
@ -14,7 +14,7 @@
|
||||
<version>3.2.0</version>
|
||||
</parent>
|
||||
<properties>
|
||||
<java.version>20</java.version>
|
||||
<java.version>21</java.version>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<!-- <jooq.version>3.17.10</jooq.version> -->
|
||||
<!-- <start-class>...</start-class>
|
||||
@ -145,7 +145,7 @@
|
||||
<dependency>
|
||||
<groupId>com.github.loki4j</groupId>
|
||||
<artifactId>loki-logback-appender</artifactId>
|
||||
<version>1.4.1</version>
|
||||
<version>1.5.1</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@ -157,12 +157,12 @@
|
||||
<dependency>
|
||||
<groupId>org.springdoc</groupId>
|
||||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<version>2.4.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springdoc</groupId>
|
||||
<artifactId>springdoc-openapi-starter-common</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<version>2.4.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@ -179,6 +179,10 @@
|
||||
<groupId>com.mysql</groupId>
|
||||
<artifactId>mysql-connector-j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.zaxxer</groupId>
|
||||
@ -226,17 +230,17 @@
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-api</artifactId>
|
||||
<version>0.11.5</version>
|
||||
<version>0.12.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-impl</artifactId>
|
||||
<version>0.11.5</version>
|
||||
<version>0.12.5</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId>
|
||||
<version>0.11.5</version>
|
||||
<version>0.12.5</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
@ -453,6 +457,11 @@
|
||||
<artifactId>mysql-connector-j</artifactId>
|
||||
<version>${mysql.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
<version>42.7.3</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user