Skip to content

Commit c5425f1

Browse files
committed
Update Hono Builder Docker image to latest Mandrel version
1 parent 8750729 commit c5425f1

8 files changed

+16
-16
lines changed

jenkins/Hono-Deploy-Eclipse-Pipeline-Declarative.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2016 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -33,7 +33,7 @@ pipeline {
3333
- name: "HOME"
3434
value: "/home/jenkins"
3535
- name: "hono-builder"
36-
image: "eclipse/hono-builder:2.2.0"
36+
image: "eclipse/hono-builder:2.5.0"
3737
imagePullPolicy: "Always"
3838
tty: true
3939
command:

jenkins/Hono-Deploy-Maven-Central-Pipeline-Declarative.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2016 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -33,7 +33,7 @@ pipeline {
3333
- name: "HOME"
3434
value: "/home/jenkins"
3535
- name: "hono-builder"
36-
image: "eclipse/hono-builder:2.2.0"
36+
image: "eclipse/hono-builder:2.5.0"
3737
imagePullPolicy: "Always"
3838
tty: true
3939
command:

jenkins/Hono-Nightly-Pipeline-Declarative.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2016 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -32,7 +32,7 @@ pipeline {
3232
- name: "HOME"
3333
value: "/home/jenkins"
3434
- name: "hono-builder"
35-
image: "eclipse/hono-builder:2.2.0"
35+
image: "eclipse/hono-builder:2.5.0"
3636
imagePullPolicy: "Always"
3737
tty: true
3838
command:

jenkins/Hono-Release-Pipeline.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2016 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -31,7 +31,7 @@ pipeline {
3131
- name: "HOME"
3232
value: "/home/jenkins"
3333
- name: "hono-builder"
34-
image: "eclipse/hono-builder:2.2.0"
34+
image: "eclipse/hono-builder:2.5.0"
3535
imagePullPolicy: "Always"
3636
tty: true
3737
command:

jenkins/Hono-Sonar-Pipeline.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2021, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2021 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -32,7 +32,7 @@ pipeline {
3232
- name: "HOME"
3333
value: "/home/jenkins"
3434
- name: "hono-builder"
35-
image: "eclipse/hono-builder:2.2.0"
35+
image: "eclipse/hono-builder:2.5.0"
3636
imagePullPolicy: "Always"
3737
tty: true
3838
command:

jenkins/Hono-Website-Pipeline-Declarative.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2020, 2022 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2020 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.

jenkins/builder/HonoBuilder.dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
1+
# Copyright (c) 2022 Contributors to the Eclipse Foundation
22
#
33
# See the NOTICE file(s) distributed with this work for additional
44
# information regarding copyright ownership.
55
#
66
# This program and the accompanying materials are made available under the
7-
# terms of the Eclipse Public Li2cense 2.0 which is available at
7+
# terms of the Eclipse Public License 2.0 which is available at
88
# http://www.eclipse.org/legal/epl-2.0
99
#
1010
# SPDX-License-Identifier: EPL-2.0
@@ -18,7 +18,7 @@
1818

1919
FROM debian:bullseye-slim
2020

21-
ARG MANDREL_VERSION=22.3.3.1-Final
21+
ARG MANDREL_VERSION=23.0.2.1-Final
2222
# either java11 or java17
2323
ARG JDK_VERSION=java17
2424
ARG MVN_VERSION=3.8.8

jenkins/builder/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ The image can be built using
66

77
```sh
88
# in folder $HONO_HOME/jenkins/builder
9-
docker build -t eclipse/hono-builder:2.2.0 -f HonoBuilder.dockerfile .
9+
docker build -t eclipse/hono-builder:2.5.0 -f HonoBuilder.dockerfile .
1010
```
1111

1212
The resulting image needs to be pushed (manually) to Docker Hub before running any of the build pipelines
1313
on the Eclipse Jenkins build infrastructure:
1414

1515
```sh
16-
docker push eclipse/hono-builder:2.2.0
16+
docker push eclipse/hono-builder:2.5.0
1717
```
1818

0 commit comments

Comments
 (0)