You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by jo...@apache.org on 2016/11/08 23:52:03 UTC

incubator-tamaya-extensions git commit: Enable a Java8 profile for disabling doclint.

Repository: incubator-tamaya-extensions
Updated Branches:
  refs/heads/master 7505b0078 -> 26381baac


Enable a Java8 profile for disabling doclint.


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

Branch: refs/heads/master
Commit: 26381baaca5fd6c8c2000530ca8ccad955866242
Parents: 7505b00
Author: John D. Ament <jo...@apache.org>
Authored: Tue Nov 8 18:51:44 2016 -0500
Committer: John D. Ament <jo...@apache.org>
Committed: Tue Nov 8 18:51:44 2016 -0500

----------------------------------------------------------------------
 pom.xml | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya-extensions/blob/26381baa/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a0df5d1..408ddf5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,7 +48,6 @@ under the License.
     </prerequisites>
 
     <properties>
-<additionalparam>-Xdoclint:none</additionalparam>
         <commons-io.version>2.5</commons-io.version>
         <findbugs.skip>false</findbugs.skip>
         <jdkVersion>1.7</jdkVersion>
@@ -853,6 +852,16 @@ under the License.
                 <maven.javadoc.skip>false</maven.javadoc.skip>
             </properties>
         </profile>
+
+        <profile>
+            <id>java8</id>
+            <activation>
+                <jdk>[1.8,)</jdk>
+            </activation>
+            <properties>
+                <additionalparam>-Xdoclint:none</additionalparam>
+            </properties>
+        </profile>
     </profiles>
 
     <reporting>
@@ -865,7 +874,7 @@ under the License.
                 <reportSets>
                     <reportSet>
                         <reports>
-                            <report>index</report>
+                           <report>index</report>
                             <report>project-team</report>
                             <report>license</report>
                             <report>mailing-list</report>