We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1592cf commit 4d8119aCopy full SHA for 4d8119a
1 file changed
pom.xml
@@ -53,6 +53,7 @@
53
54
<properties>
55
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
56
+ <java.version>11</java.version>
57
</properties>
58
59
<build>
@@ -89,8 +90,8 @@
89
90
<artifactId>maven-compiler-plugin</artifactId>
91
<version>3.11.0</version>
92
<configuration>
- <source>1.8</source>
93
- <target>1.8</target>
+ <source>${java.version}</source>
94
+ <target>${java.version}</target>
95
</configuration>
96
</plugin>
97
</plugins>
@@ -120,7 +121,7 @@
120
121
<artifactId>maven-javadoc-plugin</artifactId>
122
<version>3.6.2</version>
123
124
125
126
<executions>
127
<execution>
0 commit comments