You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by cb...@apache.org on 2007/05/21 00:27:29 UTC

svn commit: r539970 - /velocity/dvsl/trunk/pom.xml

Author: cbrisson
Date: Sun May 20 15:27:28 2007
New Revision: 539970

URL: http://svn.apache.org/viewvc?view=rev&rev=539970
Log:
pom.xml which uses DVSL for docs generation

Modified:
    velocity/dvsl/trunk/pom.xml

Modified: velocity/dvsl/trunk/pom.xml
URL: http://svn.apache.org/viewvc/velocity/dvsl/trunk/pom.xml?view=diff&rev=539970&r1=539969&r2=539970
==============================================================================
--- velocity/dvsl/trunk/pom.xml (original)
+++ velocity/dvsl/trunk/pom.xml Sun May 20 15:27:28 2007
@@ -27,7 +27,7 @@
 
   <groupId>org.apache.dvsl</groupId>
   <artifactId>dvsl</artifactId>
-  <version>1.0-RC1</version>
+  <version>1.0-SNAPSHOT</version>
 
   <name>DVSL</name>
   <url>http://velocity.apache.org/dvsl/devel/</url>
@@ -47,12 +47,39 @@
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-site-plugin</artifactId>
-        <configuration>
-          <inputEncoding>UTF-8</inputEncoding>
-          <outputEncoding>UTF-8</outputEncoding>
-          <xdocDirectory>${basedir}/xdocs/</xdocDirectory>
-        </configuration>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>site</id>
+            <phase>site</phase>
+            <configuration>
+              <tasks>
+                <ant antfile="${basedir}/build.xml" inheritRefs="true">
+                  <target name="docs"/>
+                </ant>
+                <mkdir dir="${basedir}/target/site"/>
+                <copy todir="${basedir}/target/site" overwrite="true">
+					<fileset dir="${basedir}/docs"/>
+                </copy>
+              </tasks>
+            </configuration>
+            <goals>
+              <goal>run</goal>
+            </goals>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>ant</groupId>
+            <artifactId>ant-antlr</artifactId>
+            <version>1.6.5</version>
+          </dependency>
+          <dependency>
+            <groupId>antlr</groupId>
+            <artifactId>antlrall</artifactId>
+            <version>2.7.4</version>
+          </dependency>
+        </dependencies>
       </plugin>
     </plugins>
   </build>
@@ -216,11 +243,13 @@
         <reportSets>
           <reportSet>
             <reports>
+              <!-- disabled for now
               <report>dependencies</report>
               <report>issue-tracking</report>
               <report>license</report>
               <report>summary</report>
               <report>scm</report>
+              -->
             </reports>
           </reportSet>
         </reportSets>
@@ -231,8 +260,10 @@
         <reportSets>
           <reportSet>
             <reports>
+              <!-- disabled for now
               <report>changes-report</report>
               <report>jira-report</report>
+              -->
             </reports>
           </reportSet>
         </reportSets>