You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/01/11 03:02:39 UTC

svn commit: r611018 - in /maven/components/trunk/maven-embedder: README.txt pom.xml src/main/assembly/bin.xml

Author: vsiveton
Date: Thu Jan 10 18:02:32 2008
New Revision: 611018

URL: http://svn.apache.org/viewvc?rev=611018&view=rev
Log:
o merged from r611015 (MNG-3360: Added the documentation in the Maven release)

Modified:
    maven/components/trunk/maven-embedder/README.txt
    maven/components/trunk/maven-embedder/pom.xml
    maven/components/trunk/maven-embedder/src/main/assembly/bin.xml

Modified: maven/components/trunk/maven-embedder/README.txt
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/README.txt?rev=611018&r1=611017&r2=611018&view=diff
==============================================================================
--- maven/components/trunk/maven-embedder/README.txt (original)
+++ maven/components/trunk/maven-embedder/README.txt Thu Jan 10 18:02:32 2008
@@ -4,13 +4,15 @@
   What is it?
   -----------
 
-  Maven is a software project management and comprehension tool. Based on 
+  Maven is a software project management and comprehension tool. Based on
   the concept of a Project Object Model (POM), Maven can manage a project's
   build, reporting and documentation from a central piece of information.
 
   Documentation
   -------------
 
+  The documentation available as of the date of this release is included in
+  HTML format in the docs/ directory.
   The most up-to-date documentation can be found at http://maven.apache.org/.
 
   Release Notes
@@ -22,7 +24,7 @@
   -------------------
 
   JDK:
-    1.4 or above (this is to execute Maven - it still allows you to build against 1.3 
+    1.4 or above (this is to execute Maven - it still allows you to build against 1.3
     and prior JDK's).
   Memory:
     No minimum requirement.

Modified: maven/components/trunk/maven-embedder/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/pom.xml?rev=611018&r1=611017&r2=611018&view=diff
==============================================================================
--- maven/components/trunk/maven-embedder/pom.xml (original)
+++ maven/components/trunk/maven-embedder/pom.xml Thu Jan 10 18:02:32 2008
@@ -305,6 +305,43 @@
       <build>
         <plugins>
           <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-scm-plugin</artifactId>
+            <configuration>
+              <connectionUrl>scm:svn:http://svn.apache.org/repos/asf/maven/site/trunk</connectionUrl>
+              <checkoutDirectory>${project.build.directory}/maven-site</checkoutDirectory>
+            </configuration>
+            <executions>
+              <execution>
+                <phase>initialize</phase>
+                <goals>
+                  <goal>checkout</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-invoker-plugin</artifactId>
+            <configuration>
+              <projectsDirectory>${project.build.directory}/maven-site</projectsDirectory>
+              <pom>${project.build.directory}/maven-site/pom.xml</pom>
+              <goals>
+                <goal>clean</goal>
+                <goal>site</goal>
+              </goals>
+            </configuration>
+            <executions>
+              <execution>
+                <id>initialize</id>
+                <phase>initialize</phase>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+          <plugin>
             <artifactId>maven-assembly-plugin</artifactId>
             <version>2.2-beta-1</version>
             <executions>

Modified: maven/components/trunk/maven-embedder/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-embedder/src/main/assembly/bin.xml?rev=611018&r1=611017&r2=611018&view=diff
==============================================================================
--- maven/components/trunk/maven-embedder/src/main/assembly/bin.xml (original)
+++ maven/components/trunk/maven-embedder/src/main/assembly/bin.xml Thu Jan 10 18:02:32 2008
@@ -89,5 +89,9 @@
         <include>maven-embedder-*.jar</include>
       </includes>
     </fileSet>
+    <fileSet>
+      <directory>target/maven-site/target/site</directory>
+      <outputDirectory>docs</outputDirectory>
+    </fileSet>
   </fileSets>
 </assembly>