Skip to content

Commit 4c89c2f

Browse files
Fix docker build by using a fixed maven version (#143)
1 parent 539e55b commit 4c89c2f

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM maven:3-eclipse-temurin-17
1+
FROM maven:3.9.6-eclipse-temurin-17
22

33
MAINTAINER Stephan Krusche <krusche@tum.de>
44

artemis-java-template/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pmd {
110110
ruleSets = ["$scaConfigDirectory/pmd-configuration.xml"]
111111
rulesMinimumPriority = 5
112112
ignoreFailures = true
113-
toolVersion = '7.0.0'
113+
toolVersion = '7.2.0'
114114
// exclude the test files
115115
pmdTest.enabled = false
116116
pmdMain.reports {

artemis-java-template/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1111
<argLine>-Dfile.encoding=UTF-8</argLine>
1212
<javafx.version>17.0.8</javafx.version>
13-
<mockito.version>5.11.0</mockito.version>
14-
<springboot.version>3.2.4</springboot.version>
15-
<bytebuddy.version>1.14.13</bytebuddy.version>
13+
<mockito.version>5.12.0</mockito.version>
14+
<springboot.version>3.3.0</springboot.version>
15+
<bytebuddy.version>1.14.17</bytebuddy.version>
1616
<scaConfigDirectory>${project.basedir}/staticCodeAnalysisConfig</scaConfigDirectory>
1717
<analyzeTests>false</analyzeTests>
1818
</properties>
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>com.fasterxml.jackson.core</groupId>
7979
<artifactId>jackson-databind</artifactId>
80-
<version>2.17.0</version>
80+
<version>2.17.1</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.jsonschema2pojo</groupId>
@@ -260,7 +260,7 @@
260260
<dependency>
261261
<groupId>org.eclipse.tycho</groupId>
262262
<artifactId>tycho-compiler-jdt</artifactId>
263-
<version>4.0.7</version>
263+
<version>4.0.8</version>
264264
</dependency>
265265
</dependencies>
266266
</plugin>
@@ -339,7 +339,7 @@
339339
<dependency>
340340
<groupId>com.puppycrawl.tools</groupId>
341341
<artifactId>checkstyle</artifactId>
342-
<version>10.15.0</version>
342+
<version>10.17.0</version>
343343
</dependency>
344344
</dependencies>
345345
<configuration>
@@ -359,12 +359,12 @@
359359
<dependency>
360360
<groupId>net.sourceforge.pmd</groupId>
361361
<artifactId>pmd-core</artifactId>
362-
<version>7.0.0</version>
362+
<version>7.2.0</version>
363363
</dependency>
364364
<dependency>
365365
<groupId>net.sourceforge.pmd</groupId>
366366
<artifactId>pmd-java</artifactId>
367-
<version>7.0.0</version>
367+
<version>7.2.0</version>
368368
</dependency>
369369
</dependencies>
370370
<configuration>

0 commit comments

Comments
 (0)