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 2016/12/18 22:54:14 UTC

[1/3] incubator-tamaya git commit: Added missing import.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 4de9e8b41 -> f6cce93bf


Added missing import.


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

Branch: refs/heads/master
Commit: 3d851c6c4b7560ccc563cbeb79cb4fef21e20522
Parents: 77850ea
Author: anatole <an...@apache.org>
Authored: Sun Dec 18 15:04:23 2016 +0100
Committer: anatole <an...@apache.org>
Committed: Sun Dec 18 15:04:23 2016 +0100

----------------------------------------------------------------------
 .../apache/tamaya/core/internal/DefaultConfigurationContext.java    | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/3d851c6c/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java
----------------------------------------------------------------------
diff --git a/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java b/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java
index c3031f0..2272d54 100644
--- a/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java
+++ b/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java
@@ -25,6 +25,7 @@ import org.apache.tamaya.spi.ConfigurationContextBuilder;
 import org.apache.tamaya.spi.PropertyConverter;
 import org.apache.tamaya.spi.PropertyFilter;
 import org.apache.tamaya.spi.PropertySource;
+import org.apache.tamaya.spi.PropertyValue;
 import org.apache.tamaya.spi.PropertyValueCombinationPolicy;
 import org.apache.tamaya.spi.ServiceContextManager;
 


[3/3] incubator-tamaya git commit: Fixed OSGI support.

Posted by an...@apache.org.
Fixed OSGI support.


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

Branch: refs/heads/master
Commit: f6cce93bfac95ff4490ac536caf7bae3883f2028
Parents: 684a780 4de9e8b
Author: anatole <an...@apache.org>
Authored: Sun Dec 18 23:51:35 2016 +0100
Committer: anatole <an...@apache.org>
Committed: Sun Dec 18 23:51:35 2016 +0100

----------------------------------------------------------------------
 .../internal/DefaultConfigurationContext.java   |  2 +-
 examples/01-minimal/pom.xml                     |  2 +-
 examples/02-custom-property-source/pom.xml      | 51 +++++++++++
 .../examples/custompropertysource/Main.java     | 94 ++++++++++++++++++++
 .../SimplePropertySource.java                   | 61 +++++++++++++
 .../SimplePropertySourceProvider.java           | 47 ++++++++++
 .../custompropertysource/package-info.java      | 19 ++++
 .../META-INF/MyOtherConfigProperties.properties | 19 ++++
 .../META-INF/javaconfiguration.properties       | 23 +++++
 .../org.apache.tamaya.spi.PropertySource        | 19 ++++
 ...org.apache.tamaya.spi.PropertySourceProvider | 19 ++++
 .../src/main/resources/cfgOther/a.properties    | 19 ++++
 .../src/main/resources/cfgOther/b.properties    | 19 ++++
 .../src/main/resources/cfgOther/c.properties    | 20 +++++
 examples/pom.xml                                |  1 +
 15 files changed, 413 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/f6cce93b/code/core/src/main/java/org/apache/tamaya/core/internal/DefaultConfigurationContext.java
----------------------------------------------------------------------


[2/3] incubator-tamaya git commit: Removed findbugs since it creatred errors.

Posted by an...@apache.org.
Removed findbugs since it creatred errors.


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

Branch: refs/heads/master
Commit: 684a7809944674c507c34c970201a84614338a59
Parents: 3d851c6
Author: anatole <an...@apache.org>
Authored: Sun Dec 18 15:04:56 2016 +0100
Committer: anatole <an...@apache.org>
Committed: Sun Dec 18 15:04:56 2016 +0100

----------------------------------------------------------------------
 code/pom.xml | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/684a7809/code/pom.xml
----------------------------------------------------------------------
diff --git a/code/pom.xml b/code/pom.xml
index 7f94fbb..9d227bb 100644
--- a/code/pom.xml
+++ b/code/pom.xml
@@ -37,13 +37,4 @@ under the License.
         <module>core</module>
     </modules>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>findbugs-maven-plugin</artifactId>
-            </plugin>
-        </plugins>
-    </build>
-    
 </project>