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/06/30 23:55:48 UTC

svn commit: r1141736 - in /maven/plugins/trunk/maven-plugins: site-pom.xml src/site-docs/ src/site-docs/apt/ src/site-docs/apt/index.apt src/site-docs/site.xml

Author: hboutemy
Date: Thu Jun 30 21:55:48 2011
New Revision: 1141736

URL: http://svn.apache.org/viewvc?rev=1141736&view=rev
Log:
added pom documentation

Added:
    maven/plugins/trunk/maven-plugins/site-pom.xml   (with props)
    maven/plugins/trunk/maven-plugins/src/site-docs/
    maven/plugins/trunk/maven-plugins/src/site-docs/apt/
    maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt   (with props)
    maven/plugins/trunk/maven-plugins/src/site-docs/site.xml   (with props)

Added: maven/plugins/trunk/maven-plugins/site-pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/site-pom.xml?rev=1141736&view=auto
==============================================================================
--- maven/plugins/trunk/maven-plugins/site-pom.xml (added)
+++ maven/plugins/trunk/maven-plugins/site-pom.xml Thu Jun 30 21:55:48 2011
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.plugins</groupId>
+    <artifactId>maven-plugins</artifactId>
+    <version>22-SNAPSHOT</version>
+    <relativePath>./pom.xml</relativePath>
+  </parent>
+
+  <artifactId>plugins-parent-site</artifactId>
+  <packaging>pom</packaging>
+
+  <name>Apache Maven Plugins Parent POM</name>
+  <description>This project consists of a POM that contains settings that are likely to be useful to any Maven plugin that is building and releasing code with Maven 2/3.</description>
+  <url>http://maven.apache.org/pom/maven-plugins/</url>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-plugins/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-plugins/</developerConnection>
+    <url>http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/</url>
+  </scm>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/browse/MPOM/component/12314501</url>
+  </issueManagement>
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org//view/M-R/view/Maven/job/maven-plugins/</url>
+  </ciManagement>
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/www/maven.apache.org/pom/maven-plugins/</url>
+    </site>
+  </distributionManagement>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-site-plugin</artifactId>
+        <configuration>
+          <siteDirectory>${basedir}/src/site-docs</siteDirectory>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-plugins/site-pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-plugins/site-pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: maven/plugins/trunk/maven-plugins/site-pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt?rev=1141736&view=auto
==============================================================================
--- maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt (added)
+++ maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt Thu Jun 30 21:55:48 2011
@@ -0,0 +1,53 @@
+ -----
+ Maven Plugins Parent POM
+ -----
+ Hervé Boutemy
+ -----
+ 2011-06-30
+ -----
+
+~~ 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 Plugins Parent POM
+
+    This POM is the common parent of all of the Maven plugins
+    in the Apache Maven project.
+
+    As of version 21, it sets the Java source and target
+    versions to 1.5. Thus any plugin
+    moved to version 21+ of this POM moves to 
+    requiring Java 1.5.
+
+History
+
+*--------------+------------+
+|| <<Version>> || <<Release Date>> ||
+*--------------+------------+
+| {{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?view=markup}22-SNAPSHOT}} | - |
+*--------------+------------+
+| {{{http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-21/pom.xml?view=markup}21}} ({{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?r1=1135903&r2=1103416&diff_format=h}diff}}) | 2011-06-18 |
+*--------------+------------+
+| {{{http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-20/pom.xml?view=markup}20}} ({{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?r1=1103416&r2=1069632&diff_format=h}diff}}) | 2011-05-18 |
+*--------------+------------+
+| {{{http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-19/pom.xml?view=markup}19}} ({{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?r1=1069632&r2=940021&diff_format=h}diff}}) | 2011-02-15 |
+*--------------+------------+
+| {{{http://svn.apache.org/viewvc/maven/plugins/tags/maven-plugins-18/pom.xml?view=markup}18}} ({{{http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/pom.xml?r1=940021&r2=905056&diff_format=h}diff}}) | 2010-05-04 |
+*--------------+------------+

Propchange: maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-plugins/src/site-docs/apt/index.apt
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-plugins/src/site-docs/site.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-plugins/src/site-docs/site.xml?rev=1141736&view=auto
==============================================================================
--- maven/plugins/trunk/maven-plugins/src/site-docs/site.xml (added)
+++ maven/plugins/trunk/maven-plugins/src/site-docs/site.xml Thu Jun 30 21:55:48 2011
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/DECORATION/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 http://maven.apache.org/xsd/decoration-1.1.0.xsd">
+  <body>
+  </body>
+</project>
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-plugins/src/site-docs/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-plugins/src/site-docs/site.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: maven/plugins/trunk/maven-plugins/src/site-docs/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain