Skip to content

Commit 274fa1e

Browse files
committed
Switch to Java 17.
Closes #50
1 parent 66ddb88 commit 274fa1e

File tree

2 files changed

+25
-37
lines changed

2 files changed

+25
-37
lines changed

microbenchmark-runner-junit/pom.xml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,4 @@
5959

6060
</dependencies>
6161

62-
<build>
63-
<pluginManagement>
64-
<plugins>
65-
<plugin>
66-
<groupId>org.apache.maven.plugins</groupId>
67-
<artifactId>maven-compiler-plugin</artifactId>
68-
<configuration>
69-
<source>17</source>
70-
<target>17</target>
71-
</configuration>
72-
</plugin>
73-
</plugins>
74-
</pluginManagement>
75-
</build>
76-
7762
</project>

pom.xml

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

77
<parent>
@@ -34,30 +34,33 @@
3434

3535
<url>http://github.com/mp911de/microbenchmark-runner</url>
3636

37-
<licenses>
38-
<license>
37+
<licenses>
38+
<license>
3939
<name>Eclipse Public License - v 2.0</name>
4040
<url>http://www.eclipse.org/legal/epl-v20.html</url>
41-
<distribution>repo</distribution>
42-
</license>
43-
</licenses>
41+
<distribution>repo</distribution>
42+
</license>
43+
</licenses>
4444

45-
<ciManagement>
46-
<system>GitHub Actions</system>
47-
<url>https://github.com/mp911de/microbenchmark-runner/actions</url>
48-
</ciManagement>
45+
<ciManagement>
46+
<system>GitHub Actions</system>
47+
<url>https://github.com/mp911de/microbenchmark-runner/actions</url>
48+
</ciManagement>
4949

50-
<issueManagement>
51-
<system>Github</system>
52-
<url>https://github.com/mp911de/microbenchmark-runner/issues</url>
53-
</issueManagement>
50+
<issueManagement>
51+
<system>Github</system>
52+
<url>https://github.com/mp911de/microbenchmark-runner/issues</url>
53+
</issueManagement>
5454

5555
<scm>
56-
<connection>scm:git:https://github.com/mp911de/microbenchmark-runner.git</connection>
57-
<developerConnection>scm:git:https://github.com/mp911de/microbenchmark-runner.git</developerConnection>
58-
<url>http://github.com/mp911de/microbenchmark-runner</url>
59-
<tag>HEAD</tag>
60-
</scm>
56+
<connection>scm:git:https://github.com/mp911de/microbenchmark-runner.git
57+
</connection>
58+
<developerConnection>
59+
scm:git:https://github.com/mp911de/microbenchmark-runner.git
60+
</developerConnection>
61+
<url>http://github.com/mp911de/microbenchmark-runner</url>
62+
<tag>HEAD</tag>
63+
</scm>
6164

6265
<dependencyManagement>
6366
<dependencies>
@@ -138,8 +141,8 @@
138141
<artifactId>maven-compiler-plugin</artifactId>
139142
<version>3.14.0</version>
140143
<configuration>
141-
<source>1.8</source>
142-
<target>1.8</target>
144+
<source>17</source>
145+
<target>17</target>
143146
</configuration>
144147
</plugin>
145148

0 commit comments

Comments
 (0)