You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by is...@apache.org on 2013/07/03 11:41:50 UTC

[1/2] git commit: adding the stratos parent pom

Updated Branches:
  refs/heads/master cab39c839 -> ef8495a13


adding the stratos parent pom


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

Branch: refs/heads/master
Commit: 37e8cdbbc2cb1844a5ae27ec2d53405b24462a85
Parents: b423065
Author: Isuru <is...@wso2.com>
Authored: Wed Jul 3 14:58:38 2013 +0530
Committer: Isuru <is...@wso2.com>
Committed: Wed Jul 3 14:58:38 2013 +0530

----------------------------------------------------------------------
 pom.xml | 160 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 160 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/37e8cdbb/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..3e56ede
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,160 @@
+<?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>
+    <groupId>org.apache.stratos</groupId>
+    <artifactId>stratos-parent</artifactId>
+    <packaging>pom</packaging>
+    <version>2.0.0</version>
+    <name>Apache Stratos - Parent Pom</name>
+    <description>Apache Stratos Parent pom hold the properties, plugins which are required to build stratos components, stratos features and products</description>
+    <url>http://apache.org</url>
+
+    <repositories>
+         <repository>
+            <id>wso2-nexus</id>
+            <name>WSO2 internal Repository</name>
+            <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url>
+            <releases>
+                <enabled>true</enabled>
+                <updatePolicy>daily</updatePolicy>
+                <checksumPolicy>ignore</checksumPolicy>
+            </releases>
+        </repository>
+   </repositories>
+
+    <distributionManagement>
+        <repository>
+            <id>wso2-maven2-repository</id>
+            <name>WSO2 Maven2 Repository</name>
+            <url>scp://dist.wso2.org/home/httpd/dist.wso2.org/maven2/</url>
+        </repository>
+        <snapshotRepository>
+            <id>wso2-maven2-snapshot-repository</id>
+            <name>WSO2 Maven2 Snapshot Repository</name>
+            <url>scp://dist.wso2.org/home/httpd/dist.wso2.org/snapshots/maven2/</url>
+        </snapshotRepository>
+    </distributionManagement>
+
+    <pluginRepositories>
+        <pluginRepository>
+            <id>wso2-maven2-repository-1</id>
+            <url>http://dist.wso2.org/maven2</url>
+        </pluginRepository>
+        <pluginRepository>
+            <id>wso2-maven2-repository-2</id>
+            <url>http://dist.wso2.org/snapshots/maven2</url>
+        </pluginRepository>
+     </pluginRepositories>
+
+    <build>
+        <extensions>
+      	    <extension>
+        	<groupId>org.apache.maven.wagon</groupId>
+        	<artifactId>wagon-ssh</artifactId>
+        	<version>2.1</version>
+      	    </extension>
+    	</extensions>
+        <plugins>
+            <plugin>
+                <groupId>org.jvnet.maven.incrementalbuild</groupId>
+                <artifactId>incremental-build-plugin</artifactId>
+                <version>1.3</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>incremental-build</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.1</version>
+                <configuration>
+                    <encoding>UTF-8</encoding>
+                    <source>1.6</source>
+                    <target>1.6</target>
+                </configuration>
+            </plugin>
+        </plugins>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>maven-scr-plugin</artifactId>
+                    <version>1.7.2</version>
+                    <executions>
+                        <execution>
+                            <id>generate-scr-scrdescriptor</id>
+                            <goals>
+                                <goal>scr</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.felix</groupId>
+                    <artifactId>maven-bundle-plugin</artifactId>
+                    <version>2.3.5</version>
+                    <extensions>true</extensions>
+                    <configuration>
+                        <obrRepository>NONE</obrRepository>
+                        <!--<instructions>
+                          <_include>-osgi.bnd</_include>
+                        </instructions>-->
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-source-plugin</artifactId>
+                    <version>2.1.2</version>
+                    <executions>
+                        <execution>
+                            <id>attach-sources</id>
+                            <phase>verify</phase>
+                            <goals>
+                                <goal>jar-no-fork</goal>
+                            </goals>
+                        </execution>
+                    </executions>
+                </plugin>
+		<plugin>
+        	    <artifactId>maven-assembly-plugin</artifactId>
+        	    <version>2.2-beta-2</version>
+		</plugin>
+	        <plugin>
+	            <groupId>org.apache.maven.plugins</groupId>
+	            <artifactId>maven-project-info-reports-plugin</artifactId>
+          	    <version>2.4</version>
+        	</plugin>
+            </plugins>
+        </pluginManagement>
+    </build>
+
+    <properties>
+        
+    </properties>
+</project>


[2/2] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-stratos

Posted by is...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-stratos


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

Branch: refs/heads/master
Commit: ef8495a13c1a0481c5099912e59dbb8d4231ab10
Parents: 37e8cdb cab39c8
Author: Isuru <is...@wso2.com>
Authored: Wed Jul 3 15:11:30 2013 +0530
Committer: Isuru <is...@wso2.com>
Committed: Wed Jul 3 15:11:30 2013 +0530

----------------------------------------------------------------------
 components/pom.xml                              |   2 +-
 .../2.1.3/pom.xml                               | 127 +++++++++
 .../cartridge/agent/ClusteringClient.java       | 270 +++++++++++++++++++
 .../cartridge/agent/ELBMembershipListener.java  |  83 ++++++
 .../InstanceStateNotificationClientThread.java  |  63 +++++
 .../apache/stratos/cartridge/agent/Main.java    | 158 +++++++++++
 .../agent/RegistrantMembershipListener.java     |  71 +++++
 .../exception/CartridgeAgentException.java      |  41 +++
 .../agent/internal/CartridgeAgentConstants.java |  28 ++
 .../CartridgeAgentServiceComponent.java         | 142 ++++++++++
 .../cartridge/agent/internal/DataHolder.java    |  45 ++++
 .../cartridge/agent/registrant/PortMapping.java |  90 +++++++
 .../cartridge/agent/registrant/Registrant.java  | 199 ++++++++++++++
 .../agent/registrant/RegistrantDatabase.java    | 143 ++++++++++
 .../registrant/RegistrantHealthChecker.java     | 115 ++++++++
 .../agent/registrant/RegistrantUtil.java        | 177 ++++++++++++
 .../agent/service/CartridgeAgentService.java    |  68 +++++
 .../src/main/resources/META-INF/services.xml    |  37 +++
 .../2.1.1/pom.xml                               |  77 ++++++
 .../cartridge/messages/ClusterDomain.java       | 117 ++++++++
 .../messages/ClusterDomainManager.java          |  35 +++
 .../messages/CreateClusterDomainMessage.java    | 129 +++++++++
 .../CreateRemoveClusterDomainMessage.java       |  77 ++++++
 .../2.1.3/pom.xml                               | 115 --------
 .../cartridge/agent/ClusteringClient.java       | 268 ------------------
 .../cartridge/agent/ELBMembershipListener.java  |  81 ------
 .../InstanceStateNotificationClientThread.java  |  44 ---
 .../org/wso2/carbon/cartridge/agent/Main.java   | 156 -----------
 .../agent/RegistrantMembershipListener.java     |  55 ----
 .../exception/CartridgeAgentException.java      |  39 ---
 .../agent/internal/CartridgeAgentConstants.java |  26 --
 .../CartridgeAgentServiceComponent.java         | 138 ----------
 .../cartridge/agent/internal/DataHolder.java    |  41 ---
 .../cartridge/agent/registrant/PortMapping.java |  88 ------
 .../cartridge/agent/registrant/Registrant.java  | 197 --------------
 .../agent/registrant/RegistrantDatabase.java    | 141 ----------
 .../registrant/RegistrantHealthChecker.java     | 113 --------
 .../agent/registrant/RegistrantUtil.java        | 175 ------------
 .../agent/service/CartridgeAgentService.java    |  67 -----
 .../src/main/resources/META-INF/services.xml    |  27 --
 .../2.1.1/pom.xml                               |  73 -----
 .../cartridge/messages/ClusterDomain.java       |  99 -------
 .../messages/ClusterDomainManager.java          |  34 ---
 .../messages/CreateClusterDomainMessage.java    | 128 ---------
 .../CreateRemoveClusterDomainMessage.java       |  59 ----
 components/stratos/cartridge-agent/pom.xml      |  57 ++--
 46 files changed, 2323 insertions(+), 2192 deletions(-)
----------------------------------------------------------------------