You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ss...@apache.org on 2019/08/15 20:31:28 UTC

[sling-org-apache-sling-caconfig-api] branch master updated (6dc6276 -> 737ab6c)

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

sseifert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git.


    from 6dc6276  SLING-8272 add @NonNull annotation to config name parameter as well
     new e34bab3  fix javadoc errors
     new 737ab6c  [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.2.0

The 2 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:
 pom.xml                                                           | 4 ++--
 src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)


[sling-org-apache-sling-caconfig-api] 02/02: [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.2.0

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sseifert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit 737ab6cc5aaa370bd2edaf3b5c24ab86a5e6ed43
Author: sseifert <ss...@pro-vision.de>
AuthorDate: Thu Aug 15 22:31:23 2019 +0200

    [maven-release-plugin] prepare release org.apache.sling.caconfig.api-1.2.0
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 92e3f76..d4a06db 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
     
     <artifactId>org.apache.sling.caconfig.api</artifactId>
     <packaging>bundle</packaging>
-    <version>1.1.3-SNAPSHOT</version>
+    <version>1.2.0</version>
     <name>Apache Sling Context-Aware Configuration API</name>
     <description>Apache Sling Context-Aware Configuration API</description>
 
@@ -37,7 +37,7 @@
         <connection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git</connection>
         <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git</developerConnection>
         <url>https://gitbox.apache.org/repos/asf?p=sling-org-apache-sling-caconfig-api.git</url>
-      <tag>HEAD</tag>
+      <tag>org.apache.sling.caconfig.api-1.2.0</tag>
   </scm>
     
     <build>


[sling-org-apache-sling-caconfig-api] 01/02: fix javadoc errors

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sseifert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-api.git

commit e34bab39405d2c6704a9c5b36e77cb4aaec4d1f4
Author: sseifert <ss...@pro-vision.de>
AuthorDate: Thu Aug 15 22:30:54 2019 +0200

    fix javadoc errors
---
 src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java b/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java
index c76be80..7ed3495 100644
--- a/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java
+++ b/src/main/java/org/apache/sling/caconfig/ConfigurationBuilder.java
@@ -89,7 +89,7 @@ public interface ConfigurationBuilder {
     /**
      * This method checks for the configuration existence based on {@code configName} defined in the configuration definition. It extracts the {@code configName} 
      * from the given annotation class and checks if the configuration is available for the context path in the current resource hierarchy. If not found, also
-     * checks in the global fall-back paths configured via {@link org.apache.sling.caconfig.resource.impl.def.DefaultConfigurationResourceResolvingStrategy}
+     * checks in the global fall-back paths configured via <code>org.apache.sling.caconfig.resource.impl.def.DefaultConfigurationResourceResolvingStrategy</code>
      * which by default are {@code /conf/global}, {@code /apps/config} and {@code /libs/config}.This method does not consider the default values provided in
      * the configuration definition.
      * @param clazz Class that can be adapted from a {@link org.apache.sling.api.resource.Resource}
@@ -101,7 +101,7 @@ public interface ConfigurationBuilder {
     /**
      * This method checks for the configuration existence based on provided {@code configName} value.
      * It checks if the configuration is available for the context path in the current resource hierarchy and if not found, also
-     * checks in the global fall-back paths configured via {@link org.apache.sling.caconfig.resource.impl.def.DefaultConfigurationResourceResolvingStrategy}
+     * checks in the global fall-back paths configured via <code>org.apache.sling.caconfig.resource.impl.def.DefaultConfigurationResourceResolvingStrategy</code>
      * which by default are {@code /conf/global}, {@code /apps/config} and {@code /libs/config}. This method does not consider the default values provided in
      * the configuration definition.
      * @param configName Name of the configuration