You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by ju...@apache.org on 2018/08/09 08:50:24 UTC

bigtop git commit: BIGTOP-3061: Fix ClassNotFound issue for crunch build

Repository: bigtop
Updated Branches:
  refs/heads/master 393d97dc9 -> 83a2ab92f


BIGTOP-3061: Fix ClassNotFound issue for crunch build

Pick patch from upstream.

This closes #378

Change-Id: I3c2a2bf717fa070b61b4c1788a52874361910dbc
Signed-off-by: Jun He <ju...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/83a2ab92
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/83a2ab92
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/83a2ab92

Branch: refs/heads/master
Commit: 83a2ab92f6a367dbb133384f167449ebac78f111
Parents: 393d97d
Author: Jun He <ju...@linaro.org>
Authored: Wed Aug 8 12:51:49 2018 +0800
Committer: Jun He <ju...@apache.org>
Committed: Thu Aug 9 08:48:07 2018 +0000

----------------------------------------------------------------------
 .../src/common/crunch/patch0-CRUNCH-671.diff    | 36 ++++++++++++++++++++
 1 file changed, 36 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/83a2ab92/bigtop-packages/src/common/crunch/patch0-CRUNCH-671.diff
----------------------------------------------------------------------
diff --git a/bigtop-packages/src/common/crunch/patch0-CRUNCH-671.diff b/bigtop-packages/src/common/crunch/patch0-CRUNCH-671.diff
new file mode 100644
index 0000000..2af85da
--- /dev/null
+++ b/bigtop-packages/src/common/crunch/patch0-CRUNCH-671.diff
@@ -0,0 +1,36 @@
+From 923ea820a0d2285569e92da14c5b35e675589600 Mon Sep 17 00:00:00 2001
+From: Jun He <ju...@linaro.org>
+Date: Thu, 9 Aug 2018 05:49:09 +0000
+Subject: [PATCH] CRUNCH-671: Failed to generate reports using "mvn site"
+
+Crunch build failed due to "ClassNotFound" in doxia.
+This is caused by maven-project-info-reports-plugin updated to 3.0.0, depends on
+doxia-site-renderer 1.8 (which has org.apache.maven.doxia.siterenderer.DocumentContent
+this class), while maven-site-plugin:3.3 depends on doxia-site-renderer:1.4 (which
+doesn't have org.apache.maven.doxia.siterenderer.DocumentContent)
+Specify maven-site-plugin to 3.7 can resolve this.
+
+Signed-off-by: Jun He <ju...@linaro.org>
+---
+ pom.xml | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/pom.xml b/pom.xml
+index e3b6d8d..11b87fd 100644
+--- a/pom.xml
++++ b/pom.xml
+@@ -839,6 +839,11 @@ under the License.
+           </execution>
+         </executions>
+       </plugin>
++      <plugin>
++        <groupId>org.apache.maven.plugins</groupId>
++        <artifactId>maven-site-plugin</artifactId>
++        <version>3.7.1</version>
++      </plugin>
+       </plugins>
+     </pluginManagement>
+   </build>
+-- 
+2.7.4
+