You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/12/10 17:58:05 UTC

svn commit: r889334 - /commons/sandbox/test-maven/multi-module/trunk/pom.xml

Author: niallp
Date: Thu Dec 10 16:58:05 2009
New Revision: 889334

URL: http://svn.apache.org/viewvc?rev=889334&view=rev
Log:
Remove profile copied in by mistake and correct scm link

Modified:
    commons/sandbox/test-maven/multi-module/trunk/pom.xml

Modified: commons/sandbox/test-maven/multi-module/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/test-maven/multi-module/trunk/pom.xml?rev=889334&r1=889333&r2=889334&view=diff
==============================================================================
--- commons/sandbox/test-maven/multi-module/trunk/pom.xml (original)
+++ commons/sandbox/test-maven/multi-module/trunk/pom.xml Thu Dec 10 16:58:05 2009
@@ -39,7 +39,7 @@
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/test-maven/multi-module/trunk</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/test-maven/multi-module/trunk</developerConnection>
-    <url>http://svn.apache.org/viewvc/commons/sandbox/test-maven/multi-module/</url>
+    <url>http://svn.apache.org/viewvc/commons/sandbox/test-maven/multi-module/trunk/</url>
   </scm>
 
   <modules>
@@ -100,82 +100,4 @@
     </plugins>
   </build>
 
-  <!--
-     - Profile to generate Tag documentation for Jelly Tag Library
-     -
-     - Run "mvn -Ptagdoc generate-sources"
-    -->
-  <profiles>
-    <profile>
-      <id>tagdoc</id>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <executions>
-              <execution>
-                <id>javadoc.resources</id>
-                <phase>generate-sources</phase>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-                <configuration>
-                  <tasks>
-
-                    <!-- Generate Tag Doc -->
-                    <javadoc sourcepath="${project.build.sourceDirectory}" 
-                             classpathref="maven.compile.classpath"
-                             docletpathref="maven.plugin.classpath">
-                        <doclet name="org.apache.commons.jellydoc.TagXMLDoclet">
-                            <param name="-d" value="${project.build.directory}"/>
-                        </doclet>
-                    </javadoc>
-
-                    <!-- load jelly script & copy to "target" directory -->
-                    <loadresource property="jelly.script">
-                        <javaresource name="commons-jellydoc.jelly"/>
-                    </loadresource>
-                    <echo message="${jelly.script}" file="${project.build.directory}/commons-jellydoc.jelly" append="false" />
-
-                    <!-- Run Jelly script to generate doc -->
-                    <java classname="org.apache.commons.jelly.Jelly">
-                        <arg value="${project.build.directory}/commons-jellydoc.jelly"/>
-                        <arg value="-Dmaven.build.dir=${project.build.directory}"/>
-                        <arg value="-o"/>
-                        <arg value="${jelly.doc.location}/${commons.componentid}.xml"/>
-                        <classpath refid="maven.plugin.classpath"/>
-                    </java>
-
-                  </tasks>
-                </configuration>
-              </execution>
-            </executions>
-            <dependencies>
-              <dependency>
-                <groupId>commons-jelly</groupId>
-                <artifactId>commons-jellydoc</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-              <dependency>
-                <groupId>commons-jelly</groupId>
-                <artifactId>commons-jelly</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-              <dependency>
-                <groupId>commons-jelly</groupId>
-                <artifactId>commons-jelly-tags-xml</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-              <dependency>
-                <groupId>commons-jelly</groupId>
-                <artifactId>commons-jelly-tags-jsl</artifactId>
-                <version>${project.version}</version>
-              </dependency>
-            </dependencies>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-  </profiles>
 </project>