You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@onami.apache.org by ol...@apache.org on 2012/11/27 11:10:39 UTC

svn commit: r1414058 - in /incubator/onami/trunk: parent/src/ site/ site/pom.xml site/src/

Author: olamy
Date: Tue Nov 27 10:10:38 2012
New Revision: 1414058

URL: http://svn.apache.org/viewvc?rev=1414058&view=rev
Log:
[ONAMI-13] move main site to a separate module (site)

create the site module.


Added:
    incubator/onami/trunk/site/   (with props)
    incubator/onami/trunk/site/pom.xml   (with props)
    incubator/onami/trunk/site/src/
      - copied from r1414016, incubator/onami/trunk/parent/src/
Removed:
    incubator/onami/trunk/parent/src/

Propchange: incubator/onami/trunk/site/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Nov 27 10:10:38 2012
@@ -0,0 +1,3 @@
+target
+*.iml
+.idea

Added: incubator/onami/trunk/site/pom.xml
URL: http://svn.apache.org/viewvc/incubator/onami/trunk/site/pom.xml?rev=1414058&view=auto
==============================================================================
--- incubator/onami/trunk/site/pom.xml (added)
+++ incubator/onami/trunk/site/pom.xml Tue Nov 27 10:10:38 2012
@@ -0,0 +1,109 @@
+<?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/maven-v4_0_0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.onami</groupId>
+    <artifactId>onami-parent</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.onami</groupId>
+  <artifactId>onami-site</artifactId>
+  <version>1-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>Apache Onami Site</name>
+
+
+  <scm>
+    <url>https://svn.apache.org/viewvc/incubator/onami/trunk/site</url>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/trunk/site</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/trunk/site</developerConnection>
+  </scm>
+
+  <distributionManagement>
+    <site>
+      <id>apache.website.svnpub</id>
+      <url>scm:svn:https://svn.apache.org/repos/asf/incubator/onami/site/</url>
+    </site>
+  </distributionManagement>
+
+  <build>
+
+
+
+    <plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.2</version>
+        <configuration>
+          <locales>en</locales>
+          <skipDeploy>true</skipDeploy>
+        </configuration>
+        <executions>
+          <execution>
+            <id>attach-descriptor</id>
+            <goals>
+              <goal>attach-descriptor</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>stage-for-scm-publish</id>
+            <phase>post-site</phase>
+            <goals>
+              <goal>stage</goal>
+            </goals>
+            <configuration>
+              <skipDeploy>false</skipDeploy>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-scm-publish-plugin</artifactId>
+        <version>1.0-beta-2</version>
+        <inherited>false</inherited>
+        <configuration>
+          <checkinComment>Onami main site deployment</checkinComment>
+        </configuration>
+        <executions>
+          <execution>
+            <id>scm-publish</id>
+            <phase>site-deploy</phase>
+            <goals>
+              <goal>publish-scm</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <reporting>
+    <plugins>
+
+    </plugins>
+  </reporting>
+
+</project>

Propchange: incubator/onami/trunk/site/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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