Upgrade to java 11 + docker compose update
This commit is contained in:
parent
42795bf9c8
commit
f23d92993a
20 changed files with 188 additions and 45 deletions
|
|
@ -29,7 +29,29 @@
|
|||
<artifactId>assertj-core</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>javax.activation</artifactId>
|
||||
<version>${javax.activation.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-core</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
|
|||
|
|
@ -14,6 +14,17 @@
|
|||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-core</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
<build>
|
||||
<plugins>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,8 @@
|
|||
###########################################################################
|
||||
|
||||
####### BASE ############
|
||||
FROM jboss/keycloak-adapter-wildfly:latest
|
||||
FROM jboss/wildfly:19.1.0.Final
|
||||
|
||||
|
||||
####### MAINTAINER ############
|
||||
MAINTAINER "Nicolas Héron" "nicolas.heron@pymma-software.com"
|
||||
|
|
|
|||
|
|
@ -3,23 +3,22 @@
|
|||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
|
||||
<localRepository>/m2_kiewb/repository</localRepository>
|
||||
<localRepository>/m2_kiewb/repository</localRepository>
|
||||
|
||||
<servers>
|
||||
|
||||
<server>
|
||||
<id>pymma-release</id>
|
||||
<username>pymma-dev</username>
|
||||
<password>VlcBe38jE9eNIu5H</password>
|
||||
<id>pymma2-release</id>
|
||||
<username>nheron</username>
|
||||
<password>pymmalomme</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>pymma-snapshot</id>
|
||||
<username>pymma-dev</username>
|
||||
<password>VlcBe38jE9eNIu5H</password>
|
||||
<id>pymma2-snapshot</id>
|
||||
<username>nheron</username>
|
||||
<password>pymmalomme</password>
|
||||
</server>
|
||||
|
||||
|
||||
|
||||
</servers>
|
||||
|
||||
|
||||
|
|
@ -30,34 +29,43 @@
|
|||
<profile>
|
||||
<id>pymma-declasin</id>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>pymma-release</id>
|
||||
<name>pymma repo release</name>
|
||||
<url>https://nexus.pymma-software.com/nexus/content/repositories/pymma-release/</url>
|
||||
<repository>
|
||||
<id>pymma2-snapshot</id>
|
||||
<name>pymma2 repo release</name>
|
||||
<url>https://nexus.pymma-software.net/repository/pymma-snapshot/</url>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</releases>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>pymma2-release</id>
|
||||
<name>pymma2 repo release</name>
|
||||
<url>https://nexus.pymma-software.net/repository/pymma-release/</url>
|
||||
<releases>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</releases>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>pymma-snapshot</id>
|
||||
<name>pymma repo release</name>
|
||||
<url>https://nexus.pymma-software.com/nexus/content/repositories/pymma-snapshot/</url>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<snapshots>
|
||||
<enabled>false</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
</repository>
|
||||
</repository>
|
||||
|
||||
</repositories>
|
||||
|
||||
|
||||
</profile>
|
||||
|
||||
|
||||
|
||||
|
||||
</profiles>
|
||||
<activeProfiles>
|
||||
|
||||
|
|
|
|||
|
|
@ -65,5 +65,34 @@
|
|||
<groupId>org.kie</groupId>
|
||||
<artifactId>kie-internal</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>javax.activation</artifactId>
|
||||
<version>${javax.activation.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-core</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<version>${jaxb.api.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.annotation</groupId>
|
||||
<artifactId>javax.annotation-api</artifactId>
|
||||
<version>1.3.2</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue