Since the last successful build I attempted in early March 2016, I am now getting compile failures
for jobs on
https://jenkins.ci.cloudbee.com saying that 1.8 is an invalid target:
invalid target release: 1.8
and
javac: invalid target release: 1.8
The compile snippet from my pom.xml was originally:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
I'm currently sitting at:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgs>
<arg>-verbose</arg>
</compilerArgs>
</configuration>
</plugin>
Was there a recently imposed restriction I missed, or perhaps an update to maven on the system
that has broken something?
thanks for any help,
Gabe