You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by ws...@apache.org on 2006/08/31 06:38:08 UTC

svn commit: r438788 - /struts/struts1/trunk/pom.xml

Author: wsmoak
Date: Wed Aug 30 21:38:08 2006
New Revision: 438788

URL: http://svn.apache.org/viewvc?rev=438788&view=rev
Log:
Activate the dtddoc profile by default, and exclude the web-app dtd.
STR-2942

Modified:
    struts/struts1/trunk/pom.xml

Modified: struts/struts1/trunk/pom.xml
URL: http://svn.apache.org/viewvc/struts/struts1/trunk/pom.xml?rev=438788&r1=438787&r2=438788&view=diff
==============================================================================
--- struts/struts1/trunk/pom.xml (original)
+++ struts/struts1/trunk/pom.xml Wed Aug 30 21:38:08 2006
@@ -97,6 +97,9 @@
         <profile>
             <!-- STR-2942 - Temporary profile to assist with DTDDoc plugin testing -->
             <id>dtddoc</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
             <repositories>
                 <repository>
                     <id>dtddoc</id>
@@ -114,6 +117,11 @@
                     <plugin>
                         <groupId>net.sf.dtddoc</groupId>
                         <artifactId>dtddoc-maven-plugin</artifactId>
+                        <configuration>
+                            <excludes>
+                                <exclude>**/web-app*</exclude>
+                            </excludes>
+                        </configuration>
                     </plugin>
                 </plugins>
             </reporting>