Skip to content

Commit 6ec8b15

Browse files
committed
Require JDK 1.6 or higher
1 parent b0c3573 commit 6ec8b15

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

pom.xml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,20 @@
6868
</dependency>
6969
</dependencies>
7070

71+
<build>
72+
<plugins>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-compiler-plugin</artifactId>
76+
<version>2.3.1</version>
77+
<configuration>
78+
<source>1.6</source>
79+
<target>1.6</target>
80+
</configuration>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
7185
<profiles>
7286
<profile>
7387
<id>release-sign-artifacts</id>
@@ -98,4 +112,4 @@
98112
</profile>
99113
</profiles>
100114

101-
</project>
115+
</project>

0 commit comments

Comments
 (0)