You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/01/31 23:04:50 UTC

svn commit: r1065822 - in /maven/archetype/trunk/archetype-packaging/src/site/apt: ./ index.apt.vm

Author: hboutemy
Date: Mon Jan 31 22:04:50 2011
New Revision: 1065822

URL: http://svn.apache.org/viewvc?rev=1065822&view=rev
Log:
added documentation on maven-archetype packaging

Added:
    maven/archetype/trunk/archetype-packaging/src/site/apt/
    maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm   (with props)

Added: maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm
URL: http://svn.apache.org/viewvc/maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm?rev=1065822&view=auto
==============================================================================
--- maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm (added)
+++ maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm Mon Jan 31 22:04:50 2011
@@ -0,0 +1,62 @@
+ ------
+Maven Archetype Packaging
+ ------
+Hervé Boutemy
+ ------
+2011-01-29
+ ------
+
+~~ Licensed to the Apache Software Foundation (ASF) under one
+~~ or more contributor license agreements.  See the NOTICE file
+~~ distributed with this work for additional information
+~~ regarding copyright ownership.  The ASF licenses this file
+~~ to you under the Apache License, Version 2.0 (the
+~~ "License"); you may not use this file except in compliance
+~~ with the License.  You may obtain a copy of the License at
+~~
+~~   http://www.apache.org/licenses/LICENSE-2.0
+~~
+~~ Unless required by applicable law or agreed to in writing,
+~~ software distributed under the License is distributed on an
+~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+~~ KIND, either express or implied.  See the License for the
+~~ specific language governing permissions and limitations
+~~ under the License.
+
+~~ NOTE: For help with the syntax of this file, see:
+~~ http://maven.apache.org/doxia/references/apt-format.html
+
+Maven Archetype Packaging
+
+   This is '<<<maven-archetype>>>' packaging configuration for archetypes, providing
+   {{{../maven-archetype-plugin}maven-archetype-plugin}} bindings to default lifecycle.
+
+
+Usage
+
+---
+<project>
+  ...
+  <packaging>maven-archetype</packaging>
+  ...
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.archetype</groupId>
+        <artifactId>archetype-packaging</artifactId>
+        <version>${project.version}</version>
+      </extension>
+    </extensions>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-archetype-plugin</artifactId>
+          <version>${project.version}</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>
+---
\ No newline at end of file

Propchange: maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/archetype/trunk/archetype-packaging/src/site/apt/index.apt.vm
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision