Skip to content

Commit

Permalink
Update quickstart docker images and other versions (#4088)
Browse files Browse the repository at this point in the history
  • Loading branch information
dalexandrov authored Apr 1, 2022
1 parent 186aada commit fd0288d
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-mp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-mp/Dockerfile.jlink
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-mp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This example implements a simple Hello World REST service using MicroProfile.

## Build and run

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

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

```
# Setup the environment
Expand Down
6 changes: 3 additions & 3 deletions examples/quickstarts/helidon-quickstart-mp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates.
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -25,8 +25,8 @@ version = '1.0-SNAPSHOT'

description = """helidon-quickstart-mp"""

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
Expand Down
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-se/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-se/Dockerfile.jlink
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
4 changes: 2 additions & 2 deletions examples/quickstarts/helidon-quickstart-se/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This project implements a simple Hello World REST service using Helidon SE.

## Build and run

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

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

```
# Setup the environment
Expand Down
6 changes: 3 additions & 3 deletions examples/quickstarts/helidon-quickstart-se/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates.
* Copyright (c) 2018, 2022 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -24,8 +24,8 @@ version = '1.0-SNAPSHOT'

description = """helidon-quickstart-se"""

sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This example implements a simple Hello World REST service using MicroProfile

## Build and run

With JDK11+
With JDK17+
```bash
mvn package
java -jar target/helidon-standalone-quickstart-mp.jar
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018, 2021 Oracle and/or its affiliates.
# Copyright (c) 2018, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2020, 2021 Oracle and/or its affiliates.
# Copyright (c) 2020, 2022 Oracle and/or its affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
#

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

WORKDIR /helidon

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This project implements a simple Hello World REST service using Helidon SE with

## Build and run

With JDK11+
With JDK17+
```bash
mvn package
java -jar target/helidon-standalone-quickstart-se.jar
Expand Down Expand Up @@ -81,7 +81,7 @@ You can build a native executable in 2 different ways:
### Local build

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

```
# Setup the environment
Expand Down

0 comments on commit fd0288d

Please sign in to comment.