Skip to content

Commit

Permalink
Update bundled dependencies (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strohgelaender authored Jan 3, 2023
1 parent f73be6e commit 23c443f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FROM maven:3-eclipse-temurin-17-focal

MAINTAINER Stephan Krusche <[email protected]>

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
gnupg \
&& rm -rf /var/lib/apt/lists/*

Expand Down
1 change: 0 additions & 1 deletion artemis-java-template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ apply plugin: 'org.checkerframework'
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://repo.spring.io/milestone' }
}

dependencies {
Expand Down
13 changes: 9 additions & 4 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.2</javafx.version>
<mockito.version>4.9.0</mockito.version>
<springboot.version>3.0.0</springboot.version>
<bytebuddy.version>1.12.19</bytebuddy.version>
<mockito.version>4.11.0</mockito.version>
<springboot.version>3.0.1</springboot.version>
<bytebuddy.version>1.12.20</bytebuddy.version>
<scaConfigDirectory>${project.basedir}/staticCodeAnalysisConfig</scaConfigDirectory>
<analyzeTests>false</analyzeTests>
</properties>
Expand Down Expand Up @@ -122,7 +122,7 @@
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>5.0.1</version>
<version>5.1.0</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand All @@ -139,6 +139,11 @@
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
Expand Down
1 change: 0 additions & 1 deletion artemis-java-template/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pluginManagement {
repositories {
maven { url 'https://repo.spring.io/milestone' }
gradlePluginPortal()
}
}
Expand Down

0 comments on commit 23c443f

Please sign in to comment.