Skip to content

Commit e3876f7

Browse files
committed
Update to 0.3.0 with JDK 17 and Java Records support
1 parent f81f75f commit e3876f7

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

pom.xml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@
66

77
<groupId>org.mvnsearch</groupId>
88
<artifactId>easy-random-junit5-extension</artifactId>
9-
<version>0.2.1-SNAPSHOT</version>
9+
<version>0.3.0</version>
1010
<name>easy-random-junit5-extension</name>
11-
<description>JUnit 5 extension fro easy-random</description>
11+
<description>JUnit 5 extension for easy-random</description>
1212
<url>https://github.com/linux-china/easy-random-junit5-extension</url>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<maven.compiler.source>1.8</maven.compiler.source>
17-
<maven.compiler.target>1.8</maven.compiler.target>
18-
<junit5.version>5.7.2</junit5.version>
19-
<easy-random.version>4.3.0</easy-random.version>
20-
<byte-buddy.version>1.11.15</byte-buddy.version>
16+
<java.version>17</java.version>
17+
<maven.compiler.source>${java.version}</maven.compiler.source>
18+
<maven.compiler.target>${java.version}</maven.compiler.target>
19+
<junit5.version>5.8.1</junit5.version>
20+
<easy-random.version>5.0.0</easy-random.version>
21+
<byte-buddy.version>1.11.21</byte-buddy.version>
2122
</properties>
2223

2324
<developers>
@@ -75,7 +76,7 @@
7576
<dependency>
7677
<groupId>org.assertj</groupId>
7778
<artifactId>assertj-core</artifactId>
78-
<version>3.20.2</version>
79+
<version>3.21.0</version>
7980
<scope>test</scope>
8081
</dependency>
8182
</dependencies>
@@ -99,8 +100,6 @@
99100
<artifactId>maven-compiler-plugin</artifactId>
100101
<version>3.8.1</version>
101102
<configuration>
102-
<source>1.8</source>
103-
<target>1.8</target>
104103
<parameters>true</parameters>
105104
</configuration>
106105
</plugin>

0 commit comments

Comments
 (0)