You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tiles.apache.org by ap...@apache.org on 2007/10/12 22:13:28 UTC

svn commit: r584255 - /tiles/framework/branches/TILES_2_0_X/pom.xml

Author: apetrelli
Date: Fri Oct 12 13:13:24 2007
New Revision: 584255

URL: http://svn.apache.org/viewvc?rev=584255&view=rev
Log:
TILES-198
Merge from trunk to TILES_2_0_X branch.
Added "source" and "javadoc" Maven plugins to be attached in the release profile.

Modified:
    tiles/framework/branches/TILES_2_0_X/pom.xml

Modified: tiles/framework/branches/TILES_2_0_X/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/branches/TILES_2_0_X/pom.xml?rev=584255&r1=584254&r2=584255&view=diff
==============================================================================
--- tiles/framework/branches/TILES_2_0_X/pom.xml (original)
+++ tiles/framework/branches/TILES_2_0_X/pom.xml Fri Oct 12 13:13:24 2007
@@ -203,6 +203,30 @@
                             </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>
+                    <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>
                     <!-- This configuration will be useful when the RAT plugin
                     will be able to fail when a license header is missing
                     <plugin>