Skip to content

Commit 5ab65e4

Browse files
committedDec 7, 2021
maven-compiler-plugin
1 parent 3566525 commit 5ab65e4

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed
 

‎pom.xml

+15-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,23 @@
77
<groupId>org.example</groupId>
88
<artifactId>LeetCode-Java</artifactId>
99
<version>1.0-SNAPSHOT</version>
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-compiler-plugin</artifactId>
15+
<version>3.8.1</version>
16+
<configuration>
17+
<source>1.8</source>
18+
<target>1.8</target>
19+
</configuration>
20+
</plugin>
21+
</plugins>
22+
</build>
1023

1124
<properties>
12-
<maven.compiler.source>17</maven.compiler.source>
13-
<maven.compiler.target>17</maven.compiler.target>
25+
<maven.compiler.source>1.8</maven.compiler.source>
26+
<maven.compiler.target>1.8</maven.compiler.target>
1427
</properties>
1528

1629
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.