You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ws...@apache.org on 2007/12/29 16:28:44 UTC

svn commit: r607427 - in /maven/continuum/trunk: continuum-docs/ continuum-docs/pom.xml continuum-docs/src/ continuum-docs/src/site/ continuum-docs/src/site/apt/ continuum-site/pom.xml continuum-site/src/site/apt/documentation/1_1/

Author: wsmoak
Date: Sat Dec 29 07:28:43 2007
New Revision: 607427

URL: http://svn.apache.org/viewvc?rev=607427&view=rev
Log:
Move versioned docs into a separate module.

Added:
    maven/continuum/trunk/continuum-docs/
    maven/continuum/trunk/continuum-docs/pom.xml
    maven/continuum/trunk/continuum-docs/src/
    maven/continuum/trunk/continuum-docs/src/site/
    maven/continuum/trunk/continuum-docs/src/site/apt/
      - copied from r607422, maven/continuum/trunk/continuum-site/src/site/apt/documentation/1_1/
Removed:
    maven/continuum/trunk/continuum-site/src/site/apt/documentation/1_1/
Modified:
    maven/continuum/trunk/continuum-site/pom.xml

Added: maven/continuum/trunk/continuum-docs/pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-docs/pom.xml?rev=607427&view=auto
==============================================================================
--- maven/continuum/trunk/continuum-docs/pom.xml (added)
+++ maven/continuum/trunk/continuum-docs/pom.xml Sat Dec 29 07:28:43 2007
@@ -0,0 +1,74 @@
+<!--
+  ~ 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>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.maven.continuum</groupId>
+    <artifactId>continuum-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+  <artifactId>continuum-docs</artifactId>
+  <groupId>org.apache.maven.continuum</groupId>
+  <name>Continuum</name>
+  <packaging>pom</packaging>
+  <distributionManagement>
+    <site>
+      <id>apache</id>
+      <url>scpexe://people.apache.org//www/maven.apache.org/continuum/docs/${project.version}</url>
+    </site>
+  </distributionManagement>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/continuum/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/continuum/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/continuum/trunk/</url>
+  </scm>
+  <build>
+    <extensions>
+      <extension>
+        <groupId>org.apache.maven.wagon</groupId>
+        <artifactId>wagon-ssh-external</artifactId>
+      </extension>
+    </extensions>
+  </build>
+  <reporting>
+    <excludeDefaults>true</excludeDefaults>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.0.1</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>license</report>
+              <report>issue-tracking</report>
+              <report>mailing-list</report>
+              <report>project-team</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+        <configuration>
+          <checkoutDirectoryName>continuum</checkoutDirectoryName>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Modified: maven/continuum/trunk/continuum-site/pom.xml
URL: http://svn.apache.org/viewvc/maven/continuum/trunk/continuum-site/pom.xml?rev=607427&r1=607426&r2=607427&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-site/pom.xml (original)
+++ maven/continuum/trunk/continuum-site/pom.xml Sat Dec 29 07:28:43 2007
@@ -31,7 +31,7 @@
   <distributionManagement>
     <site>
       <id>apache</id>
-      <url>scpexe://minotaur.apache.org//www/maven.apache.org/continuum/</url>
+      <url>scpexe://people.apache.org//www/maven.apache.org/continuum/</url>
     </site>
   </distributionManagement>
   <scm>