Skip to content

Commit fd0288d

Browse files
authored
Update quickstart docker images and other versions (helidon-io#4088)
1 parent 186aada commit fd0288d

14 files changed

Lines changed: 29 additions & 29 deletions

File tree

examples/quickstarts/helidon-quickstart-mp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

examples/quickstarts/helidon-quickstart-mp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This example implements a simple Hello World REST service using MicroProfile.
44

55
## Build and run
66

7-
With JDK11+
7+
With JDK17+
88
```bash
99
mvn package
1010
java -jar target/helidon-quickstart-mp.jar
@@ -80,7 +80,7 @@ You can build a native executable in 2 different ways:
8080
### Local build
8181

8282
Download Graal VM at https://www.graalvm.org/downloads. We recommend
83-
version `20.1.0` or later.
83+
version `21.3.0` or later.
8484

8585
```
8686
# Setup the environment

examples/quickstarts/helidon-quickstart-mp/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2021 Oracle and/or its affiliates.
2+
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,8 +25,8 @@ version = '1.0-SNAPSHOT'
2525

2626
description = """helidon-quickstart-mp"""
2727

28-
sourceCompatibility = 11
29-
targetCompatibility = 11
28+
sourceCompatibility = 17
29+
targetCompatibility = 17
3030
tasks.withType(JavaCompile) {
3131
options.encoding = 'UTF-8'
3232
}

examples/quickstarts/helidon-quickstart-se/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

examples/quickstarts/helidon-quickstart-se/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This project implements a simple Hello World REST service using Helidon SE.
44

55
## Build and run
66

7-
With JDK11+
7+
With JDK17+
88
```bash
99
mvn package
1010
java -jar target/helidon-quickstart-se.jar
@@ -80,7 +80,7 @@ You can build a native executable in 2 different ways:
8080
### Local build
8181

8282
Download Graal VM at https://www.graalvm.org/downloads. We recommend
83-
version `20.1.0` or later.
83+
version `21.3.0` or later.
8484

8585
```
8686
# Setup the environment

examples/quickstarts/helidon-quickstart-se/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2021 Oracle and/or its affiliates.
2+
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,8 +24,8 @@ version = '1.0-SNAPSHOT'
2424

2525
description = """helidon-quickstart-se"""
2626

27-
sourceCompatibility = 11
28-
targetCompatibility = 11
27+
sourceCompatibility = 17
28+
targetCompatibility = 17
2929
tasks.withType(JavaCompile) {
3030
options.encoding = 'UTF-8'
3131
}

examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

examples/quickstarts/helidon-standalone-quickstart-mp/Dockerfile.jlink

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
2+
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.
@@ -15,7 +15,7 @@
1515
#
1616

1717
# 1st stage, build the app
18-
FROM maven:3.6.3-openjdk-17-slim as build
18+
FROM maven:3.8.4-openjdk-17-slim as build
1919

2020
WORKDIR /helidon
2121

0 commit comments

Comments
 (0)