Skip to content

Commit cce824b

Browse files
committed
Update deps
1 parent a90beae commit cce824b

1 file changed

Lines changed: 39 additions & 27 deletions

File tree

pom.xml

Lines changed: 39 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.4.2</version>
8+
<version>3.4.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>de.ipb-halle</groupId>
@@ -16,10 +16,10 @@
1616

1717
<properties>
1818
<java.version>17</java.version>
19+
<argLine/>
1920
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2021
<timestamp>2025-02-12T15:13:00+01:00</timestamp>
21-
<mockito.version>5.15.2</mockito.version>
22-
<cdk.version>2.10</cdk.version>
22+
<cdk.version>2.11</cdk.version>
2323
</properties>
2424

2525
<dependencies>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.springdoc</groupId>
3232
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
33-
<version>2.8.4</version>
33+
<version>2.8.8</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.openapitools</groupId>
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>com.google.code.gson</groupId>
6262
<artifactId>gson</artifactId>
63-
<version>2.12.1</version>
63+
<version>2.13.1</version>
6464
</dependency>
6565
<!--use last working commit from master until a new tag is available-->
6666
<dependency>
@@ -85,31 +85,13 @@
8585
<artifactId>spring-boot-starter-test</artifactId>
8686
<scope>test</scope>
8787
</dependency>
88-
<dependency>
89-
<groupId>org.junit.jupiter</groupId>
90-
<artifactId>junit-jupiter-engine</artifactId>
91-
<version>5.11.4</version>
92-
<scope>test</scope>
93-
</dependency>
9488
<dependency>
9589
<groupId>org.junit.jupiter</groupId>
9690
<artifactId>junit-jupiter</artifactId>
97-
<version>5.11.4</version>
9891
<scope>test</scope>
9992
</dependency>
10093
</dependencies>
10194

102-
<dependencyManagement>
103-
<dependencies>
104-
<dependency>
105-
<groupId>org.mockito</groupId>
106-
<artifactId>mockito-core</artifactId>
107-
<version>${mockito.version}</version>
108-
<scope>test</scope>
109-
</dependency>
110-
</dependencies>
111-
</dependencyManagement>
112-
11395
<build>
11496
<resources>
11597
<resource>
@@ -124,10 +106,30 @@
124106
</testResource>
125107
</testResources>
126108
<plugins>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-enforcer-plugin</artifactId>
112+
<version>3.5.0</version>
113+
<executions>
114+
<execution>
115+
<id>enforce-maven</id>
116+
<goals>
117+
<goal>enforce</goal>
118+
</goals>
119+
<configuration>
120+
<rules>
121+
<requireMavenVersion>
122+
<version>3.8</version>
123+
</requireMavenVersion>
124+
</rules>
125+
</configuration>
126+
</execution>
127+
</executions>
128+
</plugin>
127129
<plugin>
128130
<groupId>org.apache.maven.plugins</groupId>
129131
<artifactId>maven-compiler-plugin</artifactId>
130-
<version>3.13.0</version>
132+
<version>3.14.0</version>
131133
<configuration>
132134
<source>${java.version}</source>
133135
<target>${java.version}</target>
@@ -140,7 +142,7 @@
140142
<plugin>
141143
<groupId>org.openapitools</groupId>
142144
<artifactId>openapi-generator-maven-plugin</artifactId>
143-
<version>7.11.0</version>
145+
<version>7.13.0</version>
144146
<executions>
145147
<execution>
146148
<goals>
@@ -160,12 +162,22 @@
160162
</execution>
161163
</executions>
162164
</plugin>
165+
<plugin>
166+
<groupId>org.apache.maven.plugins</groupId>
167+
<artifactId>maven-dependency-plugin</artifactId>
168+
<executions>
169+
<execution>
170+
<goals>
171+
<goal>properties</goal>
172+
</goals>
173+
</execution>
174+
</executions>
175+
</plugin>
163176
<plugin>
164177
<groupId>org.apache.maven.plugins</groupId>
165178
<artifactId>maven-surefire-plugin</artifactId>
166-
<version>3.5.2</version>
167179
<configuration>
168-
<argLine>-javaagent:${settings.localRepository}/org/mockito/mockito-core/${mockito.version}/mockito-core-${mockito.version}.jar</argLine>
180+
<argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine>
169181
</configuration>
170182
</plugin>
171183
</plugins>

0 commit comments

Comments
 (0)