Return-Path: X-Original-To: apmail-tamaya-commits-archive@minotaur.apache.org Delivered-To: apmail-tamaya-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 050ADCAB8 for ; Sun, 30 Nov 2014 15:53:34 +0000 (UTC) Received: (qmail 39582 invoked by uid 500); 30 Nov 2014 15:53:33 -0000 Delivered-To: apmail-tamaya-commits-archive@tamaya.apache.org Received: (qmail 39561 invoked by uid 500); 30 Nov 2014 15:53:33 -0000 Mailing-List: contact commits-help@tamaya.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tamaya.incubator.apache.org Delivered-To: mailing list commits@tamaya.incubator.apache.org Received: (qmail 39552 invoked by uid 99); 30 Nov 2014 15:53:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Nov 2014 15:53:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 30 Nov 2014 15:53:11 +0000 Received: (qmail 38096 invoked by uid 99); 30 Nov 2014 15:53:08 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Nov 2014 15:53:08 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 827A694E992; Sun, 30 Nov 2014 15:53:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: plexus@apache.org To: commits@tamaya.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-tamaya git commit: TAMAYA-13 Integrated FindBugs into the build chain. Add -DrunFindbugs to your Maven command to run it. Date: Sun, 30 Nov 2014 15:53:08 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org Repository: incubator-tamaya Updated Branches: refs/heads/master f8f7aad5f -> 96f77d4c3 TAMAYA-13 Integrated FindBugs into the build chain. Add -DrunFindbugs to your Maven command to run it. Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/96f77d4c Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/96f77d4c Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/96f77d4c Branch: refs/heads/master Commit: 96f77d4c363bd5f27ca22033dea86fec1b7cf8b5 Parents: f8f7aad Author: Oliver B. Fischer Authored: Sun Nov 30 16:51:53 2014 +0100 Committer: Oliver B. Fischer Committed: Sun Nov 30 16:51:53 2014 +0100 ---------------------------------------------------------------------- .gitignore | 1 + buildtools/pom.xml | 17 ++++++++ .../src/main/resources/findbugs-exclude.xml | 4 ++ pom.xml | 43 ++++++++++++++++++++ 4 files changed, 65 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/96f77d4c/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 81b9200..4c51d28 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,6 @@ pom.xml.next release.properties .idea *.iml +*.log *~ .DS_Store http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/96f77d4c/buildtools/pom.xml ---------------------------------------------------------------------- diff --git a/buildtools/pom.xml b/buildtools/pom.xml new file mode 100644 index 0000000..4715f87 --- /dev/null +++ b/buildtools/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + + org.apache.tamaya + tamaya-all + 0.1-SNAPSHOT + + + buildtools + Apache Tamaya - Build Tools + + + http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/96f77d4c/buildtools/src/main/resources/findbugs-exclude.xml ---------------------------------------------------------------------- diff --git a/buildtools/src/main/resources/findbugs-exclude.xml b/buildtools/src/main/resources/findbugs-exclude.xml new file mode 100644 index 0000000..5fd588b --- /dev/null +++ b/buildtools/src/main/resources/findbugs-exclude.xml @@ -0,0 +1,4 @@ + + + + http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/96f77d4c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 15f4f6f..ba26380 100644 --- a/pom.xml +++ b/pom.xml @@ -40,6 +40,7 @@ under the License. + true 1.8 ${jdkVersion} ${jdkVersion} @@ -49,7 +50,9 @@ under the License. UTF-8 4.8.2 + 1.5.0 + 3.0.0 @@ -140,6 +143,27 @@ under the License. + org.codehaus.mojo + findbugs-maven-plugin + ${findbugs.version} + + + + findbugs-analyze + compile + + check + + + + + Max + Low + true + + + + org.asciidoctor asciidoctor-maven-plugin ${asciidoctor.version} @@ -246,6 +270,10 @@ under the License. + org.codehaus.mojo + findbugs-maven-plugin + + org.apache.maven.plugins maven-javadoc-plugin 2.9.1 @@ -324,6 +352,20 @@ under the License. docs + + + runFindbugs + + + runFindbugs + + + + + false + + + @@ -411,6 +453,7 @@ under the License. + buildtools api core modules