Skip to content

Commit

Permalink
chore: update pom dependency, base image to jenkins 2.450 (#147)
Browse files Browse the repository at this point in the history
* chore: update pom dependency, base image to jenkins 2.450
* fix: dependencies not found in defined mirror
  • Loading branch information
j-luong committed Apr 29, 2024
1 parent 9bb0d01 commit 0c12857
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN ./mvnw verify -q -s .mvn/settings.xml --fail-never
COPY . .
RUN ./mvnw clean verify -s .mvn/settings.xml

FROM jenkins/jenkins:2.442-jdk11
FROM jenkins/jenkins:2.450-jdk11

USER root
RUN apt-get update && DEBIAN_FRONTEND=noninteractive \
Expand Down
9 changes: 0 additions & 9 deletions .mvn/settings.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
<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">
<mirrors>
<mirror>
<id>repo.jenkins-ci.org</id>
<name>Jenkins CI Proxy repository</name>
<url>https://repo.jenkins-ci.org/public/</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>

<servers>
<server>
<id>maven.jenkins-ci.org</id>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<properties>
<jenkins.version>2.442</jenkins.version>
<jenkins.version>2.450</jenkins.version>
<!-- java11 required since 2.357:
https://www.jenkins.io/blog/2022/06/28/require-java-11/ -->
<java.version>11</java.version>
Expand Down

0 comments on commit 0c12857

Please sign in to comment.