You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/02/04 21:36:13 UTC

svn commit: r374922 - in /myfaces/core/trunk: assembly/pom.xml assembly/src/main/assembly/dep.xml impl/pom.xml

Author: bommel
Date: Sat Feb  4 12:36:07 2006
New Revision: 374922

URL: http://svn.apache.org/viewcvs?rev=374922&view=rev
Log:
added tlddoc to assembly
changed checkstyle rules

Modified:
    myfaces/core/trunk/assembly/pom.xml
    myfaces/core/trunk/assembly/src/main/assembly/dep.xml
    myfaces/core/trunk/impl/pom.xml

Modified: myfaces/core/trunk/assembly/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/assembly/pom.xml?rev=374922&r1=374921&r2=374922&view=diff
==============================================================================
--- myfaces/core/trunk/assembly/pom.xml (original)
+++ myfaces/core/trunk/assembly/pom.xml Sat Feb  4 12:36:07 2006
@@ -89,7 +89,7 @@
             </configuration>
           </execution>
 
-          <!--execution>
+          <execution>
             <id>copy-tlddoc</id>
             <phase>package</phase>
             <goals>
@@ -99,7 +99,7 @@
               <artifactItems>
 
                 <artifactItem>
-                  <groupId>org.apache.myfaces</groupId>
+                  <groupId>org.apache.myfaces.core</groupId>
                   <artifactId>myfaces-impl</artifactId>
                   <version>${version}</version>
                   <classifier>tlddoc</classifier>
@@ -108,7 +108,7 @@
                </artifactItems>
                <outputDirectory>${project.build.directory}/tlddoc</outputDirectory>
              </configuration>
-           </execution-->
+           </execution>
 
         </executions>
       </plugin>

Modified: myfaces/core/trunk/assembly/src/main/assembly/dep.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/assembly/src/main/assembly/dep.xml?rev=374922&r1=374921&r2=374922&view=diff
==============================================================================
--- myfaces/core/trunk/assembly/src/main/assembly/dep.xml (original)
+++ myfaces/core/trunk/assembly/src/main/assembly/dep.xml Sat Feb  4 12:36:07 2006
@@ -34,13 +34,13 @@
         <include>*.jar</include>
       </includes>
     </fileSet>
-    <!--fileSet>
+    <fileSet>
       <directory>target/tlddoc</directory>
       <outputDirectory>tlddoc</outputDirectory>
       <includes>
         <include>*.jar</include>
       </includes>
-    </fileSet-->
+    </fileSet>
 
   </fileSets>
 </assembly>

Modified: myfaces/core/trunk/impl/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/core/trunk/impl/pom.xml?rev=374922&r1=374921&r2=374922&view=diff
==============================================================================
--- myfaces/core/trunk/impl/pom.xml (original)
+++ myfaces/core/trunk/impl/pom.xml Sat Feb  4 12:36:07 2006
@@ -221,6 +221,24 @@
       <build>
         <plugins>
           <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>xslt-maven-plugin</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <configuration>
+              <xslFile>src/main/tld/misc/resolve_entities-tlddoc.xsl</xslFile>
+              <srcIncludes>**/*.tld</srcIncludes>
+              <srcDir>src/main/tld</srcDir>
+              <destDir>target/tlddoc-site</destDir>
+            </configuration>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>transform</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-javadoc-plugin</artifactId>
             <executions>
@@ -230,11 +248,11 @@
               </execution>
             </executions>
           </plugin>
-          <!--plugin>
+          <plugin>
             <groupId>net.sourceforge.maven-taglib</groupId>
             <artifactId>maven-taglib-plugin</artifactId>
             <configuration>
-              <taglib.src.dir>${basedir}/target/classes/META-INF</taglib.src.dir>
+              <taglib.src.dir>${basedir}/target/tlddoc-site</taglib.src.dir>
               <tldDocDir>${basedir}/target/tlddoc</tldDocDir>
             </configuration>
             <executions>
@@ -243,7 +261,7 @@
                 <goals><goal>taglibdocjar</goal></goals>
               </execution>
             </executions>
-          </plugin-->
+          </plugin>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-source-plugin</artifactId>