We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfd97aa + d038abb commit 0446757Copy full SHA for 0446757
1 file changed
pom.xml
@@ -7,6 +7,10 @@
7
<groupId>manning</groupId>
8
<artifactId>lambdasinaction</artifactId>
9
<version>1.0</version>
10
+
11
+ <properties>
12
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13
+ </properties>
14
15
<dependencies>
16
<dependency>
@@ -22,9 +26,10 @@
22
26
<plugin>
23
27
<groupId>org.apache.maven.plugins</groupId>
24
28
<artifactId>maven-compiler-plugin</artifactId>
29
+ <version>3.1</version>
25
30
<configuration>
- <source>8</source>
- <target>8</target>
31
+ <source>1.8</source>
32
+ <target>1.8</target>
33
</configuration>
34
</plugin>
35
</plugins>
0 commit comments