mirror of
https://github.com/rasilon/ujetl.git
synced 2026-04-11 10:29:29 +00:00
Migrate to Java 11
This commit is contained in:
parent
af62d6cf96
commit
f3538a09f9
2 changed files with 7 additions and 7 deletions
|
|
@ -1,9 +1,9 @@
|
|||
FROM centos:centos7 as builder
|
||||
RUN yum -y install epel-release java-1.8.0-openjdk-devel
|
||||
RUN yum -y install epel-release java-11-openjdk-devel
|
||||
RUN yum -y groupinstall 'Development Tools'
|
||||
RUN yum -y install git maven
|
||||
RUN git clone https://github.com/rasilon/ujetl.git
|
||||
RUN cd ujetl && mvn package
|
||||
RUN git clone --single-branch --branch dev https://github.com/rasilon/ujetl.git
|
||||
RUN cd ujetl && mvn -e package
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
8
pom.xml
8
pom.xml
|
|
@ -66,12 +66,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
|
|||
<dependency>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
<artifactId>log4j-api</artifactId>
|
||||
<version>2.13.2</version>
|
||||
<version>2.13.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
<artifactId>log4j-core</artifactId>
|
||||
<version>2.13.2</version>
|
||||
<version>2.13.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
|
|
@ -85,8 +85,8 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma
|
|||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>2.3.2</version>
|
||||
<configuration>
|
||||
<source>1.8</source>
|
||||
<target>1.8</target>
|
||||
<source>11</source>
|
||||
<target>11</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue