mirror of https://github.com/apache/maven.git
o merged from r611015 (MNG-3360: Added the documentation in the Maven release)
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@611018 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
25460922d5
commit
ae82937040
|
@ -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.
|
||||
|
|
|
@ -304,6 +304,43 @@ under the License.
|
|||
</activation>
|
||||
<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>
|
||||
|
|
|
@ -89,5 +89,9 @@ under the License.
|
|||
<include>maven-embedder-*.jar</include>
|
||||
</includes>
|
||||
</fileSet>
|
||||
<fileSet>
|
||||
<directory>target/maven-site/target/site</directory>
|
||||
<outputDirectory>docs</outputDirectory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
|
|
Loading…
Reference in New Issue