You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jb...@apache.org on 2010/11/20 20:47:08 UTC

svn commit: r1037312 - in /tomcat/taglibs/standard/trunk: ./ build-tools/ build-tools/src/ build-tools/src/main/ build-tools/src/main/resources/ build-tools/src/main/resources/taglibs/ compat/ impl/ jstlel/ spec/

Author: jboynes
Date: Sat Nov 20 19:47:07 2010
New Revision: 1037312

URL: http://svn.apache.org/viewvc?rev=1037312&view=rev
Log:
add common module for tool configuration; use common checkstyle rules for all modules

Added:
    tomcat/taglibs/standard/trunk/build-tools/   (with props)
    tomcat/taglibs/standard/trunk/build-tools/pom.xml   (with props)
    tomcat/taglibs/standard/trunk/build-tools/src/
    tomcat/taglibs/standard/trunk/build-tools/src/main/
    tomcat/taglibs/standard/trunk/build-tools/src/main/resources/
    tomcat/taglibs/standard/trunk/build-tools/src/main/resources/taglibs/
    tomcat/taglibs/standard/trunk/build-tools/src/main/resources/taglibs/checkstyle.xml   (props changed)
      - copied unchanged from r1037291, tomcat/taglibs/standard/trunk/impl/checkstyle.xml
Removed:
    tomcat/taglibs/standard/trunk/impl/checkstyle.xml
Modified:
    tomcat/taglibs/standard/trunk/compat/pom.xml
    tomcat/taglibs/standard/trunk/impl/pom.xml
    tomcat/taglibs/standard/trunk/jstlel/pom.xml
    tomcat/taglibs/standard/trunk/pom.xml
    tomcat/taglibs/standard/trunk/spec/pom.xml

Propchange: tomcat/taglibs/standard/trunk/build-tools/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Nov 20 19:47:07 2010
@@ -0,0 +1,2 @@
+*.iml
+target

Added: tomcat/taglibs/standard/trunk/build-tools/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/build-tools/pom.xml?rev=1037312&view=auto
==============================================================================
--- tomcat/taglibs/standard/trunk/build-tools/pom.xml (added)
+++ tomcat/taglibs/standard/trunk/build-tools/pom.xml Sat Nov 20 19:47:07 2010
@@ -0,0 +1,46 @@
+<?xml version="1.0"?>
+<!--
+   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.
+-->
+<!-- TODO:
+    Generate the examples war
+    Enable Cactus tests
+-->
+<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.taglibs</groupId>
+        <artifactId>taglibs-parent</artifactId>
+        <version>1-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>taglibs-build-tools</artifactId>
+    <version>1.2-SNAPSHOT</version>
+    <name>Apache Standard Taglib - Build Tools</name>
+
+    <description>Build tool settings common to all Standard Taglib modules</description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/build-tools</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/build-tools
+        </developerConnection>
+        <url>http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/build-tools</url>
+    </scm>
+
+</project>

Propchange: tomcat/taglibs/standard/trunk/build-tools/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: tomcat/taglibs/standard/trunk/build-tools/src/main/resources/taglibs/checkstyle.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: tomcat/taglibs/standard/trunk/compat/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/compat/pom.xml?rev=1037312&r1=1037311&r2=1037312&view=diff
==============================================================================
--- tomcat/taglibs/standard/trunk/compat/pom.xml (original)
+++ tomcat/taglibs/standard/trunk/compat/pom.xml Sat Nov 20 19:47:07 2010
@@ -161,6 +161,18 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.taglibs</groupId>
+                        <artifactId>taglibs-build-tools</artifactId>
+                        <version>1.2-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
 
@@ -201,6 +213,14 @@
                     <!--          <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile> -->
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <configuration>
+                    <configLocation>taglibs/checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
         </plugins>
     </reporting>
 

Modified: tomcat/taglibs/standard/trunk/impl/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/impl/pom.xml?rev=1037312&r1=1037311&r2=1037312&view=diff
==============================================================================
--- tomcat/taglibs/standard/trunk/impl/pom.xml (original)
+++ tomcat/taglibs/standard/trunk/impl/pom.xml Sat Nov 20 19:47:07 2010
@@ -158,6 +158,18 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.taglibs</groupId>
+                        <artifactId>taglibs-build-tools</artifactId>
+                        <version>1.2-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
 
@@ -207,7 +219,7 @@
                 <artifactId>maven-checkstyle-plugin</artifactId>
                 <version>2.6</version>
                 <configuration>
-                    <configLocation>checkstyle.xml</configLocation>
+                    <configLocation>taglibs/checkstyle.xml</configLocation>
                 </configuration>
             </plugin>
         </plugins>

Modified: tomcat/taglibs/standard/trunk/jstlel/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/jstlel/pom.xml?rev=1037312&r1=1037311&r2=1037312&view=diff
==============================================================================
--- tomcat/taglibs/standard/trunk/jstlel/pom.xml (original)
+++ tomcat/taglibs/standard/trunk/jstlel/pom.xml Sat Nov 20 19:47:07 2010
@@ -161,6 +161,18 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.taglibs</groupId>
+                        <artifactId>taglibs-build-tools</artifactId>
+                        <version>1.2-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
 
@@ -201,6 +213,14 @@
                     <!--          <excludeFilterFile>${basedir}/findbugs-exclude-filter.xml</excludeFilterFile> -->
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <configuration>
+                    <configLocation>taglibs/checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
         </plugins>
     </reporting>
 

Modified: tomcat/taglibs/standard/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/pom.xml?rev=1037312&r1=1037311&r2=1037312&view=diff
==============================================================================
--- tomcat/taglibs/standard/trunk/pom.xml (original)
+++ tomcat/taglibs/standard/trunk/pom.xml Sat Nov 20 19:47:07 2010
@@ -79,6 +79,7 @@
   </contributors>
 
   <modules>
+    <module>build-tools</module>
     <module>spec</module>
     <module>impl</module>
     <module>compat</module>

Modified: tomcat/taglibs/standard/trunk/spec/pom.xml
URL: http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/spec/pom.xml?rev=1037312&r1=1037311&r2=1037312&view=diff
==============================================================================
--- tomcat/taglibs/standard/trunk/spec/pom.xml (original)
+++ tomcat/taglibs/standard/trunk/spec/pom.xml Sat Nov 20 19:47:07 2010
@@ -131,6 +131,31 @@
                     </instructions>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.apache.taglibs</groupId>
+                        <artifactId>taglibs-build-tools</artifactId>
+                        <version>1.2-SNAPSHOT</version>
+                    </dependency>
+                </dependencies>
+            </plugin>
         </plugins>
     </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-checkstyle-plugin</artifactId>
+                <version>2.6</version>
+                <configuration>
+                    <configLocation>taglibs/checkstyle.xml</configLocation>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org