You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by an...@apache.org on 2015/03/24 22:20:31 UTC

[14/16] incubator-tamaya git commit: Created sandbox directory.

Created sandbox directory.


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

Branch: refs/heads/master
Commit: 0f53ebd92687e56930c402c9a787445106a938d8
Parents: f3d68c0
Author: anatole <an...@apache.org>
Authored: Tue Mar 24 22:18:43 2015 +0100
Committer: anatole <an...@apache.org>
Committed: Tue Mar 24 22:18:43 2015 +0100

----------------------------------------------------------------------
 .gitignore      |  3 ++-
 sandbox/pom.xml | 43 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/0f53ebd9/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 194682a..613345a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,4 +13,5 @@ release.properties
 .settings
 .classpath
 
-modules/integration/commons-config/commons-configuration.iml
\ No newline at end of file
+modules/integration/commons-config/commons-configuration.iml
+examples/simple-propertysource/tamaya-example-simple-propertysource.iml
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/0f53ebd9/sandbox/pom.xml
----------------------------------------------------------------------
diff --git a/sandbox/pom.xml b/sandbox/pom.xml
new file mode 100644
index 0000000..3e6baf9
--- /dev/null
+++ b/sandbox/pom.xml
@@ -0,0 +1,43 @@
+<!-- 
+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 current 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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.tamaya</groupId>
+        <artifactId>tamaya-all</artifactId>
+        <version>0.1-incubating-SNAPSHOT</version>
+        <relativePath>..</relativePath>
+    </parent>
+
+    <artifactId>tamaya-sandbox</artifactId>
+    <groupId>org.apache.tamaya.ext</groupId>
+    <name>Apache Tamaya Sandbox Modules</name>
+    <description>This project contains the several extensions that can be used with Tamaya, but are not (yet) ready for
+        a release.</description>
+    <packaging>pom</packaging>
+
+    <modules>
+        <module>apiextensions</module>
+        <module>integration</module>
+        <module>management</module>
+    </modules>
+
+</project>