Repository: sqoop Updated Branches: refs/heads/sqoop2 b5f30d5cc -> e7c71dcab
SQOOP-1354: Sqoop2: wrong maven-site-plugin version (Abraham Elmahrek via Jarek Jarcec Cecho) Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/e7c71dca Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/e7c71dca Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/e7c71dca Branch: refs/heads/sqoop2 Commit: e7c71dcaba5c3c7cc7ef15407c95894ca017f725 Parents: b5f30d5 Author: Jarek Jarcec Cecho <[email protected]> Authored: Wed Jul 2 15:00:15 2014 -0700 Committer: Jarek Jarcec Cecho <[email protected]> Committed: Wed Jul 2 15:00:15 2014 -0700 ---------------------------------------------------------------------- docs/pom.xml | 41 +++++++++++++++++++++-------------------- 1 file changed, 21 insertions(+), 20 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/sqoop/blob/e7c71dca/docs/pom.xml ---------------------------------------------------------------------- diff --git a/docs/pom.xml b/docs/pom.xml index f49ae7e..75f428c 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -55,26 +55,7 @@ limitations under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> - <version>3.0-beta-3</version> - <configuration> - <reportPlugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>2.2</version> - <reportSets> - <reportSet> - <reports></reports> - </reportSet> - </reportSets> - </plugin> - <plugin> - <groupId>org.tomdz.maven</groupId> - <artifactId>sphinx-maven-plugin</artifactId> - <version>1.0.2</version> - </plugin> - </reportPlugins> - </configuration> + <version>3.3</version> <!-- Configure generating documentation alongside with package --> <executions> @@ -90,6 +71,26 @@ limitations under the License. </plugin> </plugins> </build> + <reporting> + <plugins> + <plugin> + <groupId>org.tomdz.maven</groupId> + <artifactId>sphinx-maven-plugin</artifactId> + <version>1.0.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> </profile> </profiles>
