Skip to content

Commit ed4dc1a

Browse files
committed
Revert "support java8"
This reverts commit 927d286.
1 parent 927d286 commit ed4dc1a

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

affinity-test/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,16 @@
125125

126126
<build>
127127
<plugins>
128+
<plugin>
129+
<groupId>org.apache.maven.plugins</groupId>
130+
<artifactId>maven-compiler-plugin</artifactId>
131+
<configuration>
132+
<compilerArgument>-Xlint:deprecation</compilerArgument>
133+
<source>1.8</source>
134+
<target>1.8</target>
135+
<encoding>UTF-8</encoding>
136+
</configuration>
137+
</plugin>
128138
<!--
129139
generate maven dependencies versions file that can be used later
130140
to install the right bundle in test phase.

affinity/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,16 @@
8787

8888
<build>
8989
<plugins>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-compiler-plugin</artifactId>
93+
<configuration>
94+
<compilerArgument>-Xlint:deprecation</compilerArgument>
95+
<source>1.7</source>
96+
<target>1.7</target>
97+
<encoding>UTF-8</encoding>
98+
</configuration>
99+
</plugin>
90100

91101
<!-- TODO make git remember that the file should be executable -->
92102
<plugin>

0 commit comments

Comments
 (0)