You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by cn...@apache.org on 2016/02/01 11:33:35 UTC

struts git commit: Every 2nd build on jenkins with jdk8 fails while generating javadoc for tiles-plugin. It fails at file serialized-form.html because it misses class org.apache.tiles.context.TilesRequestContextWrapper. That class was present in tiles 2

Repository: struts
Updated Branches:
  refs/heads/master cceb89166 -> 94691e0af


Every 2nd build on jenkins with jdk8 fails while generating javadoc for tiles-plugin. It fails at file serialized-form.html because it misses class org.apache.tiles.context.TilesRequestContextWrapper. That class was present in tiles 2 but is not present in tiles 3 anymore. To avoid failing builds due to this failOnError is set to false.


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/94691e0a
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/94691e0a
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/94691e0a

Branch: refs/heads/master
Commit: 94691e0afd4434a0cefc063e2100c76afd50438e
Parents: cceb891
Author: cnenning <cn...@apache.org>
Authored: Mon Feb 1 11:33:20 2016 +0100
Committer: cnenning <cn...@apache.org>
Committed: Mon Feb 1 11:33:20 2016 +0100

----------------------------------------------------------------------
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/94691e0a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1dc97da..c5f3f2b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -301,6 +301,9 @@
                         </reports>
                     </reportSet>
                 </reportSets>
+                <configuration>
+                    <failOnError>false</failOnError>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.rat</groupId>