Skip to content

Commit

Permalink
Fix for Java 8 compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
ianhlavats committed Nov 18, 2016
1 parent 4ded2f0 commit 0800af6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions primefaces-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>1.0.0.Final</version>
<version>5.2.4.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -152,10 +152,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<source>1.8</source>
<target>1.8</target>
<debug>true</debug>
<debuglevel>lines,vars,source</debuglevel>
<compilerArgument>-proc:none</compilerArgument>
Expand All @@ -174,7 +174,6 @@
<excludes>
<!-- Exclude all metamodel generated Java classes -->
<exclude>**/model/*_.java</exclude>
<exclude>**/model/Abstract*.java</exclude>
</excludes>
</configuration>
<goals>
Expand Down

0 comments on commit 0800af6

Please sign in to comment.