Skip to content

Commit 8164444

Browse files
committed
Use source/target of Java 8 to avoid default 1.5
1 parent b77f1d4 commit 8164444

File tree

1 file changed

+12
-0
lines changed
  • gem-assembly-descriptors/src/it/assemble-project-with-gems/java-world

1 file changed

+12
-0
lines changed

gem-assembly-descriptors/src/it/assemble-project-with-gems/java-world/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,16 @@
66
<packaging>jar</packaging>
77
<version>0.0.0</version>
88
<name>java-world</name>
9+
<build>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-compiler-plugin</artifactId>
13+
<version>3.1</version>
14+
<configuration>
15+
<source>8</source>
16+
<target>8</target>
17+
</configuration>
18+
</plugin>
19+
</plugins>
20+
</build>
921
</project>

0 commit comments

Comments
 (0)