Updated Branches: refs/heads/sqoop2 3b5a641ed -> 4acbd2569
SQOOP-757: Disable maven reports project wise (Jarek Jarcec Cecho via Cheolsoo Park) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/4acbd256 Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/4acbd256 Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/4acbd256 Branch: refs/heads/sqoop2 Commit: 4acbd256984e30c4ba2c8cec54381bb01b78690b Parents: 3b5a641 Author: Cheolsoo Park <[email protected]> Authored: Wed Dec 12 14:40:53 2012 -0800 Committer: Cheolsoo Park <[email protected]> Committed: Wed Dec 12 14:40:53 2012 -0800 ---------------------------------------------------------------------- docs/pom.xml | 10 ---------- pom.xml | 14 +++++++++++++- 2 files changed, 13 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/4acbd256/docs/pom.xml ---------------------------------------------------------------------- diff --git a/docs/pom.xml b/docs/pom.xml index c519f3f..f49ae7e 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -35,16 +35,6 @@ limitations under the License. <reporting> <plugins> <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>2.4</version> - <reportSets> - <reportSet> - <reports></reports> - </reportSet> - </reportSets> - </plugin> - <plugin> <groupId>org.tomdz.maven</groupId> <artifactId>sphinx-maven-plugin</artifactId> <version>1.0.2</version> http://git-wip-us.apache.org/repos/asf/sqoop/blob/4acbd256/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5a18822..2311934 100644 --- a/pom.xml +++ b/pom.xml @@ -361,12 +361,24 @@ limitations under the License. <!-- All reports might be generated using mvn site command --> <reporting> <plugins> - <!-- Test code coverage might be executed with mvn cobertura:cobertura command --> + <!-- Test code coverage might be executed with mvn cobertura:cobertura command --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.2</version> </plugin> + + <!-- Turning off standard reports as they collide with sphinx --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.4</version> + <reportSets> + <reportSet> + <reports></reports> + </reportSet> + </reportSets> + </plugin> </plugins> </reporting>
