Author: jbonofre
Date: Thu Mar 22 17:56:08 2012
New Revision: 1303930

URL: http://svn.apache.org/viewvc?rev=1303930&view=rev
Log:
Add the documentation module

Added:
    incubator/kalumet/trunk/documentation/
    incubator/kalumet/trunk/documentation/pom.xml
    incubator/kalumet/trunk/documentation/src/
    incubator/kalumet/trunk/documentation/src/site/
    incubator/kalumet/trunk/documentation/src/site/assembly/
    incubator/kalumet/trunk/documentation/src/site/assembly/docs.xml
    incubator/kalumet/trunk/documentation/src/site/site.xml
Modified:
    incubator/kalumet/trunk/pom.xml

Added: incubator/kalumet/trunk/documentation/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/kalumet/trunk/documentation/pom.xml?rev=1303930&view=auto
==============================================================================
--- incubator/kalumet/trunk/documentation/pom.xml (added)
+++ incubator/kalumet/trunk/documentation/pom.xml Thu Mar 22 17:56:08 2012
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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";>
+
+  <!--
+
+      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.
+  -->
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.kalumet</groupId>
+    <artifactId>kalumet</artifactId>
+    <version>0.6-incubating-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <artifactId>org.apache.kalumet.documentation</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Kalumet :: Documentation</name>
+  <url>http://incubator.apache.org/kalumet/docs/${project.version}</url>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>site</id>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>site</goal>
+            </goals>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.maven.wagon</groupId>
+            <artifactId>wagon-ssh</artifactId>
+            <version>2.2</version>
+          </dependency>
+          <dependency>
+            <groupId>org.apache.maven.wagon</groupId>
+            <artifactId>wagon-ssh-external</artifactId>
+            <version>2.2</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <descriptors>
+            <descriptor>src/site/assembly/docs.xml</descriptor>
+          </descriptors>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>single</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+    <finalName>apache-kalumet-${project.version}</finalName>
+  </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>project-team</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>${siteBaseDeployment}/docs/${project.version}</url>
+    </site>
+  </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-site-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>deploy</id>
+                <phase>deploy</phase>
+                <goals>
+                  <goal>deploy</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
+</project>
\ No newline at end of file

Added: incubator/kalumet/trunk/documentation/src/site/assembly/docs.xml
URL: 
http://svn.apache.org/viewvc/incubator/kalumet/trunk/documentation/src/site/assembly/docs.xml?rev=1303930&view=auto
==============================================================================
--- incubator/kalumet/trunk/documentation/src/site/assembly/docs.xml (added)
+++ incubator/kalumet/trunk/documentation/src/site/assembly/docs.xml Thu Mar 22 
17:56:08 2012
@@ -0,0 +1,3 @@
+<assembly>
+
+</assembly>

Added: incubator/kalumet/trunk/documentation/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/incubator/kalumet/trunk/documentation/src/site/site.xml?rev=1303930&view=auto
==============================================================================
--- incubator/kalumet/trunk/documentation/src/site/site.xml (added)
+++ incubator/kalumet/trunk/documentation/src/site/site.xml Thu Mar 22 17:56:08 
2012
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+
+  <bannerLeft>
+    <name>Apache Kalumet</name>
+    <src>http://incubator.apache.org/kalumet/images/logo.png</src>
+    <href>http://incubator.apache.org/kalumet</href>
+  </bannerLeft>
+
+  <skin>
+    <groupId>org.apache.maven.skins</groupId>
+    <artifactId>maven-fluido-skin</artifactId>
+    <version>1.1</version>
+  </skin>
+
+  <publishDate format="yyyy-MM-dd" position="right"/>
+  <version position="right"/>
+
+  <body>
+
+    <breadcrumbs>
+      <item name="${project.version}" href="/index.html"/>
+    </breadcrumbs>
+
+    <menu name="Introduction">
+      <item name="Quick Start" href="/quick-start.html"/>
+      <item name="Feature Tour" href="/tour/quick.html"/>
+      <item name="Release Notes" href="/release-notes.html"/>
+      <item name="Downloads" 
href="http://incubator.apache.org/kalumet/download.html"/>
+    </menu>
+
+    <menu name="Administrator Guide">
+      <item name="Installation">
+        <item name="Agent installation" href="/adminguide/agent.html"/>
+        <item name="Console installation" href="/adminguide/console.html"/>
+        <item name="Upgrade to a New Version" href="/adminguide/upgrade.html"/>
+      </item>
+    </menu>
+  </body>
+
+</project>
\ No newline at end of file

Modified: incubator/kalumet/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/kalumet/trunk/pom.xml?rev=1303930&r1=1303929&r2=1303930&view=diff
==============================================================================
--- incubator/kalumet/trunk/pom.xml (original)
+++ incubator/kalumet/trunk/pom.xml Thu Mar 22 17:56:08 2012
@@ -41,6 +41,7 @@
     <module>controller</module>
     <module>agent</module>
     <module>console</module>
+    <module>documentation</module>
     <module>assembly</module>
   </modules>
 


Reply via email to