We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 012f44e commit 4726133Copy full SHA for 4726133
1 file changed
pom.xml
@@ -60,6 +60,7 @@
60
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
61
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
62
<sonar.language>java</sonar.language>
63
+ <java.version>1.8</java.version>
64
</properties>
65
66
<developers>
@@ -118,8 +119,8 @@
118
119
<artifactId>maven-compiler-plugin</artifactId>
120
<version>2.3.2</version>
121
<configuration>
- <source>1.8</source>
122
- <target>1.8</target>
+ <source>${java.version}</source>
123
+ <target>${java.version}</target>
124
</configuration>
125
</plugin>
126
<!-- Coverage -->
0 commit comments