This is an automated email from the ASF dual-hosted git repository.

anatole pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tamaya.git.


    from 8bcf810  Merge pull request #54 from 
apache/TAMAYA-277-add-test-assertions
     new d5d3b74  Removed PropertyValueBuilder and some deprecations. Aligned 
PropertyValue API.
     new 0ddb859  Merged with master changes.
     new b3089cd  TAMAYA-398 TAMAYA-399 TAMAYA-400 TAMAYA-401 TAMAYA-402 
TAMAYA-403 TAMAYA-404 TAMAYA-405 TAMAYA-406 TAMAYA-407 Implemented MP 1.3 spec.
     new 8dfffea  Fixed quality issues.

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |  37 +---
 README.md                                          |   6 +-
 .../src/main/resources/checkstyle/style.xml        |   5 +-
 .../main/java/org/apache/tamaya/Configuration.java |   6 +-
 .../apache/tamaya/spi/ConfigurationBuilder.java    |  22 +-
 .../apache/tamaya/spi/ConfigurationContext.java    |   2 +-
 .../org/apache/tamaya/spi/ConversionContext.java   |  18 +-
 .../java/org/apache/tamaya/spi/FilterContext.java  |   8 +-
 .../main/java/org/apache/tamaya/spi/ListValue.java | 159 +++++++-------
 .../java/org/apache/tamaya/spi/ObjectValue.java    | 189 ++++++++++++-----
 .../org/apache/tamaya/spi/PropertyConverter.java   |   2 +-
 .../java/org/apache/tamaya/spi/PropertyFilter.java |   4 +-
 .../java/org/apache/tamaya/spi/PropertySource.java |   8 +-
 .../java/org/apache/tamaya/spi/PropertyValue.java  | 195 +++++++----------
 .../apache/tamaya/spi/PropertyValueBuilder.java    | 205 ------------------
 .../java/org/apache/tamaya/spi/ServiceContext.java |  46 +++-
 .../apache/tamaya/spi/ServiceContextManager.java   |   9 +-
 .../tamaya/spi/ConfigurationBuilderTest.java       |   5 +
 .../apache/tamaya/spi/ConversionContextTest.java   |   8 +-
 .../org/apache/tamaya/spi/FilterContextTest.java   |  44 ++--
 .../java/org/apache/tamaya/spi/ListValueTest.java  | 205 +++++++++---------
 .../org/apache/tamaya/spi/ObjectValueTest.java     | 231 ++++++++++++---------
 .../org/apache/tamaya/spi/PropertySourceTest.java  |   4 +-
 .../tamaya/spi/PropertyValueBuilderTest.java       |   6 +-
 .../org/apache/tamaya/spi/PropertyValueTest.java   | 207 ++++++++----------
 .../tamaya/spi/ServiceContextManagerTest.java      |   7 +-
 .../tamaya/spi/TestLowerOrdinalServiceContext.java |   3 +-
 .../org/apache/tamaya/spi/TestServiceContext.java  |  15 +-
 code/core/pom.xml                                  |   2 +-
 .../core/internal/CoreConfigurationProvider.java   |   2 +-
 .../core/internal/OSGIServiceComparator.java       |   9 +-
 .../tamaya/core/internal/OSGIServiceContext.java   |   5 +-
 .../converters/LocalDateTimeConverter.java         |   1 +
 ...nstantConverter.java => MonthDayConverter.java} |  16 +-
 .../{InstantConverter.java => YearConverter.java}  |  16 +-
 ...lTimeConverter.java => YearMonthConverter.java} |  16 +-
 .../org.apache.tamaya.spi.PropertyConverter        |   3 +
 .../tamaya/core/ConfigurationBuilderTest.java      |   4 +-
 .../core/internal/OSGIServiceContextTest.java      |   8 +-
 .../propertysource/BasePropertySourceTest.java     |   5 +-
 .../tamaya/spisupport/DefaultConfiguration.java    |  29 ++-
 .../spisupport/DefaultConfigurationBuilder.java    |  23 +-
 .../spisupport/DefaultConfigurationContext.java    |  53 ++++-
 .../spisupport/DefaultConfigurationSnapshot.java   |   6 +-
 .../tamaya/spisupport/DefaultMetaDataProvider.java |   2 +-
 .../spisupport/DefaultPropertySourceSnapshot.java  |   8 +-
 .../tamaya/spisupport/DefaultServiceContext.java   |   1 -
 .../apache/tamaya/spisupport/MetadataProvider.java |   2 +-
 .../spisupport/PriorityServiceComparator.java      |  10 +-
 .../spisupport/PropertyConverterManager.java       |  43 ++--
 .../spisupport/PropertyFilterComparator.java       |  17 +-
 .../spisupport/PropertySourceComparator.java       |   3 +-
 .../propertysource/BasePropertySource.java         |  34 +--
 .../propertysource/BuildablePropertySource.java    |   8 +-
 .../propertysource/CLIPropertySource.java          |   4 +-
 .../propertysource/EnvironmentPropertySource.java  |  23 +-
 .../JavaConfigurationPropertySource.java           |  21 +-
 .../propertysource/MapPropertySource.java          |  40 ++++
 .../PropertiesResourcePropertySource.java          |  21 +-
 .../propertysource/SimplePropertySource.java       |  13 +-
 .../propertysource/SystemPropertySource.java       |  25 +--
 .../spisupport/BuildablePropertySourceTest.java    |   2 +-
 .../DefaultConfigurationBuilderTest.java           |   2 +-
 .../spisupport/DefaultConfigurationTest.java       |   2 +-
 .../tamaya/spisupport/MockedPropertySource.java    |   2 +-
 .../tamaya/spisupport/RegexPropertyFilterTest.java |   6 +-
 .../propertysource/BasePropertySourceTest.java     |   6 +-
 .../PropertiesResourcePropertySourceTest.java      |  26 +--
 .../propertysource/SimplePropertySourceTest.java   |  24 +--
 .../propertysource/SystemPropertySourceTest.java   |  20 +-
 .../propertysource/TestPropertyDefaultSource.java  |   4 +-
 .../propertysource/WrappedPropertySourceTest.java  |   2 +-
 .../spisupport/services/DefaultServiceContext.java |  25 ++-
 examples/01-minimal/pom.xml                        |   2 +
 pom.xml                                            |  65 ++----
 75 files changed, 1118 insertions(+), 1199 deletions(-)
 delete mode 100644 
code/api/src/main/java/org/apache/tamaya/spi/PropertyValueBuilder.java
 copy 
code/core/src/main/java/org/apache/tamaya/core/internal/converters/{InstantConverter.java
 => MonthDayConverter.java} (75%)
 copy 
code/core/src/main/java/org/apache/tamaya/core/internal/converters/{InstantConverter.java
 => YearConverter.java} (75%)
 copy 
code/core/src/main/java/org/apache/tamaya/core/internal/converters/{LocalTimeConverter.java
 => YearMonthConverter.java} (77%)

Reply via email to