You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by de...@apache.org on 2016/11/18 07:06:29 UTC

incubator-systemml git commit: [SYSTEMML-1117] Enable doclint javadoc check during build

Repository: incubator-systemml
Updated Branches:
  refs/heads/master 13c0b06d1 -> 19a97e251


[SYSTEMML-1117] Enable doclint javadoc check during build

Remove the activation of the profile to disable doclint for Java >= 1.8.
Rename profile to 'ignore-doclint'.


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

Branch: refs/heads/master
Commit: 19a97e2510a5e6ae4315b1a5f84d16bf2985ef34
Parents: 13c0b06
Author: Deron Eriksson <de...@us.ibm.com>
Authored: Thu Nov 17 23:03:14 2016 -0800
Committer: Deron Eriksson <de...@us.ibm.com>
Committed: Thu Nov 17 23:03:14 2016 -0800

----------------------------------------------------------------------
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/19a97e25/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3f3fbad..f8a1ee1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -674,11 +674,11 @@
 		</profile>
 
 		<profile>
-			<!-- Need to ignore doclint warnings for javadocs generated on Java 8 until warnings are fixed -->
-			<id>ignore-doclint-warnings-for-javadocs-on-java-8</id>
-			<activation>
+			<!-- Can be used to ignore doclint javadoc issues -->
+			<id>ignore-doclint</id>
+			<!-- <activation>
 				<jdk>[1.8,)</jdk>
-			</activation>
+			</activation> -->
 			<properties>
 				<javadoc.opts>-Xdoclint:none</javadoc.opts>
 			</properties>