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/10 20:26:04 UTC

svn commit: r583570 - /tiles/framework/trunk/pom.xml

Author: apetrelli
Date: Wed Oct 10 11:26:03 2007
New Revision: 583570

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

Modified:
    tiles/framework/trunk/pom.xml

Modified: tiles/framework/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tiles/framework/trunk/pom.xml?rev=583570&r1=583569&r2=583570&view=diff
==============================================================================
--- tiles/framework/trunk/pom.xml (original)
+++ tiles/framework/trunk/pom.xml Wed Oct 10 11:26:03 2007
@@ -204,6 +204,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>