Author: mrdon Date: Thu Apr 6 18:36:30 2006 New Revision: 392152 URL: http://svn.apache.org/viewcvs?rev=392152&view=rev Log: Adding the assembly profile to all the jars
Modified: struts/action/trunk/el/pom.xml struts/action/trunk/extras/pom.xml struts/action/trunk/faces/pom.xml struts/action/trunk/faces/src/conf/struts-tld.xsl struts/action/trunk/mailreader-dao/pom.xml struts/action/trunk/pom.xml struts/action/trunk/scripting/pom.xml struts/action/trunk/taglib/pom.xml Modified: struts/action/trunk/el/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/el/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/el/pom.xml (original) +++ struts/action/trunk/el/pom.xml Thu Apr 6 18:36:30 2006 @@ -141,5 +141,35 @@ </plugins> </reporting> --> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> Modified: struts/action/trunk/extras/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/extras/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/extras/pom.xml (original) +++ struts/action/trunk/extras/pom.xml Thu Apr 6 18:36:30 2006 @@ -95,4 +95,35 @@ </dependencies> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + </project> Modified: struts/action/trunk/faces/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/faces/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/faces/pom.xml (original) +++ struts/action/trunk/faces/pom.xml Thu Apr 6 18:36:30 2006 @@ -134,5 +134,35 @@ </plugins> </reporting> --> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> Modified: struts/action/trunk/faces/src/conf/struts-tld.xsl URL: http://svn.apache.org/viewcvs/struts/action/trunk/faces/src/conf/struts-tld.xsl?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/faces/src/conf/struts-tld.xsl (original) +++ struts/action/trunk/faces/src/conf/struts-tld.xsl Thu Apr 6 18:36:30 2006 @@ -32,6 +32,7 @@ <xsl:if test="uri"> <uri><xsl:value-of select="uri"/></uri> </xsl:if> + <xsl:apply-templates select="description" /> <xsl:apply-templates select="validator"/> <xsl:apply-templates select="listener"/> <xsl:apply-templates select="tag"/> @@ -65,6 +66,7 @@ <xsl:if test="body-content"> <body-content><xsl:value-of select="body-content"/></body-content> </xsl:if> + <xsl:apply-templates select="description" /> <xsl:apply-templates select="attribute"/> </tag> </xsl:template> @@ -81,7 +83,24 @@ <xsl:if test="rtexprvalue"> <rtexprvalue><xsl:value-of select="rtexprvalue"/></rtexprvalue> </xsl:if> + <xsl:apply-templates select="description" /> </attribute> + </xsl:template> + + <xsl:template match="description"> + <description> + <xsl:if test="p"> + <xsl:value-of disable-output-escaping="yes" select="concat('<','![CDATA[')" /><xsl:text> + </xsl:text> + <xsl:copy-of select="p" /><xsl:text> + </xsl:text> + <xsl:value-of disable-output-escaping="yes" select="concat(']]', '>')" /><xsl:text> + </xsl:text> + </xsl:if> + <xsl:if test="not(p)"> + <xsl:value-of select="." /> + </xsl:if> + </description> </xsl:template> <!-- Process everything else by just passing it through --> Modified: struts/action/trunk/mailreader-dao/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/mailreader-dao/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/mailreader-dao/pom.xml (original) +++ struts/action/trunk/mailreader-dao/pom.xml Thu Apr 6 18:36:30 2006 @@ -119,5 +119,35 @@ </plugins> </reporting> --> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> Modified: struts/action/trunk/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/pom.xml (original) +++ struts/action/trunk/pom.xml Thu Apr 6 18:36:30 2006 @@ -276,6 +276,7 @@ <module>faces</module> <module>scripting</module> <module>apps</module> + <module>mailreader-dao</module> </modules> <licenses> Modified: struts/action/trunk/scripting/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/scripting/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/scripting/pom.xml (original) +++ struts/action/trunk/scripting/pom.xml Thu Apr 6 18:36:30 2006 @@ -130,4 +130,35 @@ </reporting> --> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + + </project> Modified: struts/action/trunk/taglib/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/taglib/pom.xml?rev=392152&r1=392151&r2=392152&view=diff ============================================================================== --- struts/action/trunk/taglib/pom.xml (original) +++ struts/action/trunk/taglib/pom.xml Thu Apr 6 18:36:30 2006 @@ -122,5 +122,35 @@ </plugins> </reporting> --> + <profiles> + <profile> + <id>generate-assembly</id> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <executions> + <execution> + <id>attach-javadoc</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <executions> + <execution> + <id>attach-source</id> + <goals><goal>jar</goal></goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + </profiles> + </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]