Return-Path: X-Original-To: apmail-crunch-commits-archive@www.apache.org Delivered-To: apmail-crunch-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5BD8E188A3 for ; Thu, 21 May 2015 21:11:12 +0000 (UTC) Received: (qmail 39466 invoked by uid 500); 21 May 2015 21:11:12 -0000 Delivered-To: apmail-crunch-commits-archive@crunch.apache.org Received: (qmail 39430 invoked by uid 500); 21 May 2015 21:11:12 -0000 Mailing-List: contact commits-help@crunch.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@crunch.apache.org Delivered-To: mailing list commits@crunch.apache.org Received: (qmail 39421 invoked by uid 99); 21 May 2015 21:11:12 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 May 2015 21:11:12 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E4D87E51B1; Thu, 21 May 2015 21:11:11 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jwills@apache.org To: commits@crunch.apache.org Message-Id: <7b51dfe0b2824a8aadc7b0f4b9f7bb27@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: crunch git commit: CRUNCH-523: Enable checkstyle in build; refactor javadoc / checkstyle config to pluginManagement; remove unused site config; update plugin versions Date: Thu, 21 May 2015 21:11:11 +0000 (UTC) Repository: crunch Updated Branches: refs/heads/master d0bb205ea -> e90cf2782 CRUNCH-523: Enable checkstyle in build; refactor javadoc / checkstyle config to pluginManagement; remove unused site config; update plugin versions Signed-off-by: Josh Wills Project: http://git-wip-us.apache.org/repos/asf/crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/e90cf278 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/e90cf278 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/e90cf278 Branch: refs/heads/master Commit: e90cf2782d89e61f5c4f2a19a7879a1da357facc Parents: d0bb205 Author: Sean Owen Authored: Thu May 21 17:25:08 2015 +0100 Committer: Josh Wills Committed: Thu May 21 13:49:29 2015 -0700 ---------------------------------------------------------------------- pom.xml | 224 +++++++++++++++++++------------------------------ src/site/site.xml | 65 -------------- 2 files changed, 85 insertions(+), 204 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/crunch/blob/e90cf278/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index d47f6ff..942f203 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ under the License. org.apache apache - 11 + 16 org.apache.crunch @@ -40,7 +40,7 @@ under the License. - 2.2.1 + 3.0.4 @@ -535,80 +535,16 @@ under the License. org.apache.maven.plugins - maven-site-plugin - false - - - org.apache.maven.wagon - wagon-ssh - 1.0 - - - - UTF-8 - UTF-8 - - - org.apache.maven.plugins - maven-project-info-reports-plugin - 2.4 - - - - cim - issue-tracking - license - mailing-list - project-team - scm - - - - - - + maven-javadoc-plugin org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - public - true - ${pkg}.hadoop.*:${pkg}.impl.mr.*:${pkg}.impl.mem.*:${pkg}.io.*:${pkg}.materialize:${pkg}.scrunch - - - Core - ${pkg}:${pkg}.fn:${pkg}.impl.*:${pkg}.io:${pkg}.types:${pkg}.types.*:${pkg}.test:${pkg}.util - - - Extension Library - ${pkg}.lib:${pkg}.lib.* - - - User-contributed Functionality - ${pkg}.contrib:${pkg}.contrib.* - - - Examples - ${pkg}.examples - - - - - - aggregate - - aggregate - - site - - + maven-checkstyle-plugin org.apache.maven.plugins maven-release-plugin - 2.4.2 + 2.5.2 org.apache.maven.scm @@ -629,7 +565,7 @@ under the License. org.apache.rat apache-rat-plugin - 0.8 + 0.11 .git/** @@ -655,11 +591,42 @@ under the License. + + + + org.apache.maven.doxia + doxia-core + 1.6 + + + xerces + xercesImpl + + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + 2.15 + + src/main/config/checkstyle.xml + + + + validate + validate + + check + + + org.apache.maven.plugins maven-compiler-plugin - 2.5.1 + 3.3 ${java.source.version} ${java.target.version} @@ -667,22 +634,58 @@ under the License. org.apache.maven.plugins + maven-javadoc-plugin + 2.10.3 + + public + true + ${pkg}.hadoop.*:${pkg}.impl.mr.*:${pkg}.impl.mem.*:${pkg}.io.*:${pkg}.materialize:${pkg}.scrunch + + + Core + ${pkg}:${pkg}.fn:${pkg}.impl.*:${pkg}.io:${pkg}.types:${pkg}.types.*:${pkg}.test:${pkg}.util + + + Extension Library + ${pkg}.lib:${pkg}.lib.* + + + User-contributed Functionality + ${pkg}.contrib:${pkg}.contrib.* + + + Examples + ${pkg}.examples + + + + -Xdoclint:none + + + + aggregate + + aggregate + + site + + + + + org.apache.maven.plugins maven-assembly-plugin - 2.4 + 2.5.4 net.alchim31.maven scala-maven-plugin - 3.1.6 + 3.2.0 org.apache.maven.plugins maven-surefire-plugin - 2.12 + 2.18.1 - UTF-8 - UTF-8 - UTF-8 -Xmx2G -XX:PermSize=512m -XX:MaxPermSize=1G -Dfile.encoding=UTF-8 @@ -694,12 +697,12 @@ under the License. org.apache.maven.plugins maven-dependency-plugin - 2.8 + 2.10 org.apache.maven.plugins maven-source-plugin - 2.1.2 + 2.4 attach-sources @@ -713,6 +716,7 @@ under the License. org.apache.maven.plugins maven-archetype-plugin + 2.2 true @@ -769,61 +773,6 @@ under the License. - - org.apache.maven.plugins - maven-site-plugin - 3.3 - - - org.apache.maven.wagon - wagon-ssh - 1.0 - - - org.apache.maven.doxia - doxia-module-markdown - 1.3 - - - - UTF-8 - UTF-8 - - - org.codehaus.mojo - cobertura-maven-plugin - 2.5.1 - - - org.apache.maven.plugins - maven-checkstyle-plugin - 2.9.1 - - ${project.parent.basedir}/src/main/config/checkstyle.xml - - - - org.apache.maven.plugins - maven-javadoc-plugin - 2.8.1 - - protected - true - org.apache.crunch;org.apache.crunch.fn - org.apache.crunch.impl.* - - - - generate-javadoc - - aggregate - - - - - - - - - - - org.apache.maven.skins - maven-fluido-skin - 1.2.2 - - - - - - - - http://apache.org/images/feather-small.gif - http://apache.org/ - - - - - - - - - - - - - - - - - - - - - - - - -