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
|
@ -11,6 +11,8 @@
|
||||||
Documentation
|
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/.
|
The most up-to-date documentation can be found at http://maven.apache.org/.
|
||||||
|
|
||||||
Release Notes
|
Release Notes
|
||||||
|
|
|
@ -304,6 +304,43 @@ under the License.
|
||||||
</activation>
|
</activation>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<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>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<version>2.2-beta-1</version>
|
<version>2.2-beta-1</version>
|
||||||
|
|
|
@ -89,5 +89,9 @@ under the License.
|
||||||
<include>maven-embedder-*.jar</include>
|
<include>maven-embedder-*.jar</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
<fileSet>
|
||||||
|
<directory>target/maven-site/target/site</directory>
|
||||||
|
<outputDirectory>docs</outputDirectory>
|
||||||
|
</fileSet>
|
||||||
</fileSets>
|
</fileSets>
|
||||||
</assembly>
|
</assembly>
|
||||||
|
|
Loading…
Reference in New Issue