Skip to content

Commit

Permalink
core version upgrades plus removed final from the maven config classe…
Browse files Browse the repository at this point in the history
…s that was preventing it from actually being set
  • Loading branch information
iantmoore committed Jul 3, 2015
1 parent 1dae182 commit e23bd73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
<version>2.8</version>

<reportSets>
<reportSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class ExecutionConfig {
* @parameter default-value=true
* @required
*/
private final boolean strict = true;
private boolean strict = true;

/**
* If true any parse errors will fail the build immediately, rather than
Expand All @@ -95,7 +95,7 @@ public class ExecutionConfig {
* @parameter default-value=true
* @required
*/
private final boolean fastFailParseErrors = true;
private boolean fastFailParseErrors = true;

/**
* @parameter
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
<configuration>
<source>1.5</source>
<target>1.5</target>
<inherit>true</inherit>
<!--<inherit>true</inherit>-->
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
Expand Down

0 comments on commit e23bd73

Please sign in to comment.