You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2015/06/17 22:56:58 UTC

incubator-tamaya git commit: TAMAYA-80 Added a distribution archive for the documentation of Tamaya.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 9c40b48a8 -> f81a3e607


TAMAYA-80 Added a distribution archive for the documentation of Tamaya.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/f81a3e60
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/f81a3e60
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/f81a3e60

Branch: refs/heads/master
Commit: f81a3e6079837ac41bfb441a8621bf8a85b47191
Parents: 9c40b48
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Wed Jun 17 22:56:20 2015 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Wed Jun 17 22:56:20 2015 +0200

----------------------------------------------------------------------
 docs/pom.xml                             | 19 +++++++++++++
 docs/src/main/assembly/documentation.xml | 39 +++++++++++++++++++++++++++
 2 files changed, 58 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/f81a3e60/docs/pom.xml
----------------------------------------------------------------------
diff --git a/docs/pom.xml b/docs/pom.xml
index 67bac70..280c42d 100644
--- a/docs/pom.xml
+++ b/docs/pom.xml
@@ -99,6 +99,25 @@ under the License.
                     </execution>
                 </executions>
             </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>attach-distribution</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <finalName>apache-tamaya-docs-${project.version}</finalName>
+                            <descriptor>src/main/assembly/documentation.xml</descriptor>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
         </plugins>
     </build>
 

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/f81a3e60/docs/src/main/assembly/documentation.xml
----------------------------------------------------------------------
diff --git a/docs/src/main/assembly/documentation.xml b/docs/src/main/assembly/documentation.xml
new file mode 100644
index 0000000..2ead299
--- /dev/null
+++ b/docs/src/main/assembly/documentation.xml
@@ -0,0 +1,39 @@
+<!--
+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.
+-->
+<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
+          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3
+                              http://maven.apache.org/xsd/assembly-1.1.3.xsd">
+
+    <id>distribution</id>
+    <formats>
+        <format>zip</format>
+        <format>tar.gz</format>
+        <format>dir</format>
+    </formats>
+
+    <fileSets>
+
+        <fileSet>
+            <directory>${project.build.directory}/adocs</directory>
+            <outputDirectory>docs</outputDirectory>
+
+        </fileSet>
+    </fileSets>
+</assembly>
\ No newline at end of file