Skip to content

Commit 6c6a74f

Browse files
committed
Define 'java11' Maven Profile setting the Java version to 11 and upgrading Mockito to 5.2.0.
1 parent dfd2355 commit 6c6a74f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,4 +288,17 @@
288288
</plugins>
289289
</build>
290290

291+
<profiles>
292+
<profile>
293+
<id>java11</id>
294+
<activation>
295+
<jdk>[11,)</jdk>
296+
</activation>
297+
<properties>
298+
<java.version>11</java.version>
299+
<mockito.version>5.2.0</mockito.version>
300+
</properties>
301+
</profile>
302+
</profiles>
303+
291304
</project>

0 commit comments

Comments
 (0)