Author: simonetripodi
Date: Wed Feb 29 14:45:10 2012
New Revision: 1295137
URL: http://svn.apache.org/viewvc?rev=1295137&view=rev
Log:
added a module that contains configurations of quality metricts tools, such as
checkstyle, pmd, etc...
that will simplify sharing the same checkstyle config across multiple modules
Added:
commons/proper/chain/trunk/build-tools/ (with props)
commons/proper/chain/trunk/build-tools/pom.xml (with props)
commons/proper/chain/trunk/build-tools/src/
commons/proper/chain/trunk/build-tools/src/main/
commons/proper/chain/trunk/build-tools/src/main/resources/
commons/proper/chain/trunk/build-tools/src/main/resources/org/
commons/proper/chain/trunk/build-tools/src/main/resources/org/apache/
commons/proper/chain/trunk/build-tools/src/main/resources/org/apache/commons/
commons/proper/chain/trunk/build-tools/src/main/resources/org/apache/commons/chain2/
commons/proper/chain/trunk/build-tools/src/main/resources/org/apache/commons/chain2/checkstyle.xml
- copied unchanged from r1294382,
commons/proper/chain/trunk/checkstyle.xml
commons/proper/chain/trunk/build-tools/src/main/resources/org/apache/commons/chain2/license-header.txt
- copied unchanged from r1294382,
commons/proper/chain/trunk/license-header.txt
Propchange: commons/proper/chain/trunk/build-tools/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Feb 29 14:45:10 2012
@@ -0,0 +1 @@
+target
Added: commons/proper/chain/trunk/build-tools/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/chain/trunk/build-tools/pom.xml?rev=1295137&view=auto
==============================================================================
--- commons/proper/chain/trunk/build-tools/pom.xml (added)
+++ commons/proper/chain/trunk/build-tools/pom.xml Wed Feb 29 14:45:10 2012
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<project
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-chain-parent</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <relativePath>../</relativePath>
+ </parent>
+
+ <artifactId>commons-chain2-build-tools</artifactId>
+
+ <name>Apache Commons Chain :: Build Tools</name>
+ <description>Configuration for widely used quality enforcement plugins: pmd,
checkstyle, findbugs...</description>
+
+ <build>
+ <resources>
+ <resource>
+ <directory>${basedir}/../</directory>
+ <targetPath>META-INF</targetPath>
+ <includes>
+ <include>NOTICE.txt</include>
+ <include>LICENSE.txt</include>
+ </includes>
+ </resource>
+
+ <resource>
+ <directory>${basedir}/src/main/resources</directory>
+ </resource>
+ </resources>
+ </build>
+
+</project>
Propchange: commons/proper/chain/trunk/build-tools/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/chain/trunk/build-tools/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: commons/proper/chain/trunk/build-tools/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml