Skip to content

Commit

Permalink
Fix docker build by using a fixed maven version (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strohgelaender authored Jun 2, 2024
1 parent 539e55b commit 4c89c2f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3-eclipse-temurin-17
FROM maven:3.9.6-eclipse-temurin-17

MAINTAINER Stephan Krusche <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion artemis-java-template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pmd {
ruleSets = ["$scaConfigDirectory/pmd-configuration.xml"]
rulesMinimumPriority = 5
ignoreFailures = true
toolVersion = '7.0.0'
toolVersion = '7.2.0'
// exclude the test files
pmdTest.enabled = false
pmdMain.reports {
Expand Down
16 changes: 8 additions & 8 deletions artemis-java-template/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<argLine>-Dfile.encoding=UTF-8</argLine>
<javafx.version>17.0.8</javafx.version>
<mockito.version>5.11.0</mockito.version>
<springboot.version>3.2.4</springboot.version>
<bytebuddy.version>1.14.13</bytebuddy.version>
<mockito.version>5.12.0</mockito.version>
<springboot.version>3.3.0</springboot.version>
<bytebuddy.version>1.14.17</bytebuddy.version>
<scaConfigDirectory>${project.basedir}/staticCodeAnalysisConfig</scaConfigDirectory>
<analyzeTests>false</analyzeTests>
</properties>
Expand Down Expand Up @@ -77,7 +77,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
</dependency>
<dependency>
<groupId>org.jsonschema2pojo</groupId>
Expand Down Expand Up @@ -260,7 +260,7 @@
<dependency>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-compiler-jdt</artifactId>
<version>4.0.7</version>
<version>4.0.8</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -339,7 +339,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.15.0</version>
<version>10.17.0</version>
</dependency>
</dependencies>
<configuration>
Expand All @@ -359,12 +359,12 @@
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-core</artifactId>
<version>7.0.0</version>
<version>7.2.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>7.0.0</version>
<version>7.2.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down

0 comments on commit 4c89c2f

Please sign in to comment.