Skip to content

Commit 43c9fc3

Browse files
authored
Ensure to target Java8 (#29)
1 parent c84731f commit 43c9fc3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

jacoco-console-reporter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@
114114
<groupId>org.apache.maven.plugins</groupId>
115115
<artifactId>maven-compiler-plugin</artifactId>
116116
<configuration>
117-
<source>11</source>
118-
<target>11</target>
117+
<source>1.8</source>
118+
<target>1.8</target>
119119
</configuration>
120120
</plugin>
121121

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
<properties>
1717
<java.version>1.8</java.version>
18+
<maven.compiler.source>1.8</maven.compiler.source>
19+
<maven.compiler.target>1.8</maven.compiler.target>
1820
<maven.compiler.release>8</maven.compiler.release>
1921
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2022
<junit.version>5.12.2</junit.version>

0 commit comments

Comments
 (0)