Skip to content

Commit bcbd790

Browse files
committed
Update to the latest versions of junit and jmh
1 parent 8f4f968 commit bcbd790

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,34 +41,37 @@
4141

4242
<properties>
4343
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44+
45+
<jmh.version>1.32</jmh.version>
46+
<junit.version>5.8.1</junit.version>
4447
</properties>
4548

4649
<dependencies>
4750
<dependency>
4851
<groupId>org.junit.jupiter</groupId>
4952
<artifactId>junit-jupiter-engine</artifactId>
50-
<version>5.4.2</version>
53+
<version>${junit.version}</version>
5154
<scope>test</scope>
5255
</dependency>
5356

5457
<dependency>
5558
<groupId>org.junit.jupiter</groupId>
5659
<artifactId>junit-jupiter-params</artifactId>
57-
<version>5.4.2</version>
60+
<version>${junit.version}</version>
5861
<scope>test</scope>
5962
</dependency>
6063

6164
<dependency>
6265
<groupId>org.openjdk.jmh</groupId>
6366
<artifactId>jmh-core</artifactId>
64-
<version>1.21</version>
67+
<version>${jmh.version}</version>
6568
<scope>test</scope>
6669
</dependency>
6770

6871
<dependency>
6972
<groupId>org.openjdk.jmh</groupId>
7073
<artifactId>jmh-generator-annprocess</artifactId>
71-
<version>1.21</version>
74+
<version>${jmh.version}</version>
7275
<scope>test</scope>
7376
</dependency>
7477
</dependencies>
@@ -116,7 +119,7 @@
116119
<path>
117120
<groupId>org.openjdk.jmh</groupId>
118121
<artifactId>jmh-generator-annprocess</artifactId>
119-
<version>1.21</version>
122+
<version>${jmh.version}</version>
120123
</path>
121124
</annotationProcessorPaths>
122125
</configuration>

0 commit comments

Comments
 (0)