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:22 UTC

svn commit: r374923 - in /myfaces/tomahawk/trunk: assembly/pom.xml assembly/src/main/assembly/dep.xml core/pom.xml examples/assembly/pom.xml

Author: bommel
Date: Sat Feb  4 12:36:15 2006
New Revision: 374923

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

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

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

Modified: myfaces/tomahawk/trunk/assembly/src/main/assembly/dep.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/assembly/src/main/assembly/dep.xml?rev=374923&r1=374922&r2=374923&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/assembly/src/main/assembly/dep.xml (original)
+++ myfaces/tomahawk/trunk/assembly/src/main/assembly/dep.xml Sat Feb  4 12:36:15 2006
@@ -34,12 +34,12 @@
         <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/tomahawk/trunk/core/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/core/pom.xml?rev=374923&r1=374922&r2=374923&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/core/pom.xml (original)
+++ myfaces/tomahawk/trunk/core/pom.xml Sat Feb  4 12:36:15 2006
@@ -263,6 +263,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>
@@ -272,11 +290,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>
@@ -285,7 +303,7 @@
                 <goals><goal>taglibdocjar</goal></goals>
               </execution>
             </executions>
-          </plugin-->
+          </plugin>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-source-plugin</artifactId>

Modified: myfaces/tomahawk/trunk/examples/assembly/pom.xml
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/examples/assembly/pom.xml?rev=374923&r1=374922&r2=374923&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/examples/assembly/pom.xml (original)
+++ myfaces/tomahawk/trunk/examples/assembly/pom.xml Sat Feb  4 12:36:15 2006
@@ -3,7 +3,7 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <packaging>pom</packaging>
-  <name>Tomahawk Examples assembly</name>
+  <name>Tomahawk Examples Assembly</name>
   <groupId>org.apache.myfaces.tomahawk</groupId>
   <artifactId>tomahawk-examples-assembly</artifactId>