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/01/15 20:22:16 UTC

[1/2] incubator-tamaya git commit: TAMAYA-53 Added build configuration module.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 7a29ec3d1 -> 8285f2c37


TAMAYA-53 Added build configuration module.


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

Branch: refs/heads/master
Commit: 8f6722769b6df32650158a92bfda70817cbf6ca8
Parents: 7a29ec3
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Thu Jan 15 20:18:37 2015 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Thu Jan 15 20:19:11 2015 +0100

----------------------------------------------------------------------
 buildconfigurations/pom.xml | 36 ++++++++++++++++++++++++++++++++++++
 java7/pom.xml               | 10 ++++++++++
 java8/api/pom.xml           | 10 ++++++++++
 modules/pom.xml             |  8 ++++++++
 pom.xml                     |  1 +
 5 files changed, 65 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8f672276/buildconfigurations/pom.xml
----------------------------------------------------------------------
diff --git a/buildconfigurations/pom.xml b/buildconfigurations/pom.xml
new file mode 100644
index 0000000..b5a5c2b
--- /dev/null
+++ b/buildconfigurations/pom.xml
@@ -0,0 +1,36 @@
+<?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/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>
+    </parent>
+
+    <artifactId>buildconfigurations</artifactId>
+    <name>Apache Tamaya Build Configuration</name>
+
+    <inceptionYear>2015</inceptionYear>
+    
+</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8f672276/java7/pom.xml
----------------------------------------------------------------------
diff --git a/java7/pom.xml b/java7/pom.xml
index a71ef92..165bd2c 100644
--- a/java7/pom.xml
+++ b/java7/pom.xml
@@ -35,6 +35,16 @@ under the License.
         <jdkVersion>1.7</jdkVersion>
     </properties>
 
+    <build>
+        <extensions>
+            <extension>
+                <groupId>org.apache.tamaya</groupId>
+                <artifactId>buildconfigurations</artifactId>
+                <version>${project.version}</version>
+            </extension>
+        </extensions>
+    </build>
+
     <modules>
         <module>api</module>
 <!--

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8f672276/java8/api/pom.xml
----------------------------------------------------------------------
diff --git a/java8/api/pom.xml b/java8/api/pom.xml
index d0f9fb4..5b6ddd9 100644
--- a/java8/api/pom.xml
+++ b/java8/api/pom.xml
@@ -33,6 +33,16 @@ under the License.
         The API defines a complete SE based API for reading of configuration data.
     </description>
 
+    <build>
+        <extensions>
+            <extension>
+                <groupId>org.apache.tamaya</groupId>
+                <artifactId>buildconfigurations</artifactId>
+                <version>${project.version}</version>
+            </extension>
+        </extensions>
+    </build>
+
     <dependencies>
         <dependency>
             <groupId>junit</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8f672276/modules/pom.xml
----------------------------------------------------------------------
diff --git a/modules/pom.xml b/modules/pom.xml
index 10bca33..22c4b0e 100644
--- a/modules/pom.xml
+++ b/modules/pom.xml
@@ -44,6 +44,14 @@ under the License.
     </modules>
 
     <build>
+        <extensions>
+            <extension>
+                <groupId>org.apache.tamaya</groupId>
+                <artifactId>buildconfigurations</artifactId>
+                <version>${project.version}</version>
+            </extension>
+        </extensions>
+
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8f672276/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 65631d0..49400af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -201,6 +201,7 @@ under the License.
     </developers>
 
     <modules>
+        <module>buildconfigurations</module>
         <module>java7</module>
         <module>java8</module>
         <module>modules</module>


[2/2] incubator-tamaya git commit: Fixed compile error.

Posted by pl...@apache.org.
Fixed compile error.


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

Branch: refs/heads/master
Commit: 8285f2c3736112864de558b998bafefcfa069600
Parents: 8f67227
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Thu Jan 15 20:21:58 2015 +0100
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Thu Jan 15 20:21:58 2015 +0100

----------------------------------------------------------------------
 .../test/java/org/apache/tamaya/TestConfiguration.java  | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/8285f2c3/java7/api/src/test/java/org/apache/tamaya/TestConfiguration.java
----------------------------------------------------------------------
diff --git a/java7/api/src/test/java/org/apache/tamaya/TestConfiguration.java b/java7/api/src/test/java/org/apache/tamaya/TestConfiguration.java
index 863bd93..fd518e1 100644
--- a/java7/api/src/test/java/org/apache/tamaya/TestConfiguration.java
+++ b/java7/api/src/test/java/org/apache/tamaya/TestConfiguration.java
@@ -80,7 +80,17 @@ public class TestConfiguration implements Configuration{
     }
 
     @Override
-    public Map<String, String> getProperties() {
+    public Configuration with(ConfigOperator operator) {
         return null;
     }
+
+    @Override
+    public <T> T query(ConfigQuery<T> query) {
+        throw new RuntimeException("Method not implemented yet.");
+    }
+
+    @Override
+    public Map<String, String> getProperties() {
+        throw new RuntimeException("Method not implemented yet.");
+    }
 }