Skip to content

Commit 62b7c6a

Browse files
committed
POM: compile base classes to target Java 7.
1 parent 890c7c9 commit 62b7c6a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,21 @@
3838
</dependency>
3939
</dependencies>
4040
<build>
41+
<plugins>
42+
<plugin>
43+
<groupId>org.apache.maven.plugins</groupId>
44+
<artifactId>maven-compiler-plugin</artifactId>
45+
<executions>
46+
<execution>
47+
<id>base-compile</id>
48+
<configuration>
49+
<source>1.7</source>
50+
<target>1.7</target>
51+
</configuration>
52+
</execution>
53+
</executions>
54+
</plugin>
55+
</plugins>
4156
<resources>
4257
<resource>
4358
<directory>${project.build.sourceDirectory}</directory>

0 commit comments

Comments
 (0)