From c0627aa512f3ba47a269e209878cd1ecc75e649e Mon Sep 17 00:00:00 2001 From: Julien HENRY Date: Tue, 30 Apr 2024 15:15:43 +0200 Subject: SCANCLI-129 Update embedded JRE version to 17.0.11+9 --- pom.xml | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index a3e3f73..f047034 100644 --- a/pom.xml +++ b/pom.xml @@ -52,9 +52,9 @@ ${project.build.directory}/unpack ${project.build.finalName}.jar - jdk-17.0.7+7-jre - jdk-17.0.7+7-jre - jdk-17.0.7+7-jre/Contents/Home + jdk-17.0.11+9-jre + jdk-17.0.11+9-jre + jdk-17.0.11+9-jre/Contents/Home ${project.groupId}:${project.artifactId}:zip,${project.groupId}:${project.artifactId}:zip:linux,${project.groupId}:${project.artifactId}:zip:windows,${project.groupId}:${project.artifactId}:zip:macosx,${project.groupId}:${project.artifactId}:json:cyclonedx @@ -109,6 +109,15 @@ true + + + + com.googlecode.maven-download-plugin + download-maven-plugin + 1.9.0 + + + org.apache.maven.plugins @@ -220,7 +229,6 @@ com.googlecode.maven-download-plugin download-maven-plugin - 1.6.8 unpack-linux @@ -229,10 +237,10 @@ wget - https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jre_x64_linux_hotspot_17.0.7_7.tar.gz + https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jre_x64_linux_hotspot_17.0.11_9.tar.gz true ${unpack.dir}/linux - bb025133b96266f6415d5084bb9b260340a813968007f1d2d14690f20bd021ca + bcb1b7b8ad68c93093f09b591b7cb17161d39891f7d29d33a586f5a328603707 @@ -270,7 +278,6 @@ com.googlecode.maven-download-plugin download-maven-plugin - 1.6.8 unpack-windows @@ -279,10 +286,10 @@ wget - https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jre_x64_windows_hotspot_17.0.7_7.zip + https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jre_x64_windows_hotspot_17.0.11_9.zip true ${unpack.dir}/windows - 62e82c1afa7509424813e9cb22d8becfec4346d7505e6d2fc8770af4dcd5b9a0 + 4bafe2e94439c8193fc8c68247cb0dbaf4e80265b903288f63f128304f129bbe @@ -319,7 +326,6 @@ com.googlecode.maven-download-plugin download-maven-plugin - 1.6.8 unpack-macosx @@ -328,10 +334,10 @@ wget - https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jre_x64_mac_hotspot_17.0.7_7.tar.gz + https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jre_x64_mac_hotspot_17.0.11_9.tar.gz true ${unpack.dir}/macosx - 62559a927a8dbac2ea1d7879f590a62fea87d61bfaa92894e578d2045b8d921b + 232c40bebd6ddbb673862e86e7e6e09bcfe399e5a53c8a6b77bf1ceab8edefd0 -- cgit v1.2.3 11306'>pr/11306 Vaadin 6, 7, 8 is a Java framework for modern Java web applications: https://github.com/vaadin/frameworkwww-data
aboutsummaryrefslogtreecommitdiffstats
blob: bd9a87532fb61dc2b97d83230f20afc7b744384a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-servlet-containers-test</artifactId>
        <version>8.14-SNAPSHOT</version>
    </parent>
    <artifactId>vaadin-test-wildfly11-server</artifactId>
    <name>Vaadin Wildfly 11 Test</name>
    <packaging>war</packaging>
    <properties>
        <jetty.skip>true</jetty.skip>
        <wildfly.version>11.0.0.Final</wildfly.version>
        <server.name>wildfly11</server.name>
    </properties>

    <dependencies>
        <!-- UI classes and tests from dependencies -->
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-test-server-ui</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-test-server-tests</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <!-- Server configuration -->
            <plugin>
                <groupId>org.wildfly.plugins</groupId>
                <artifactId>wildfly-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>