Skip to content

Commit a8f16fa

Browse files
add pom-template
1 parent f41057e commit a8f16fa

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pom-template.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<build>
4+
<plugins>
5+
<plugin>
6+
<groupId>org.apache.maven.plugins</groupId>
7+
<artifactId>maven-compiler-plugin</artifactId>
8+
<configuration>
9+
<source>1.8</source>
10+
<target>1.8</target>
11+
</configuration>
12+
</plugin>
13+
</plugins>
14+
</build>
15+
</project>

0 commit comments

Comments
 (0)