You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2015/03/02 08:05:45 UTC

directory-fortress-enmasse git commit: FC-73 - Fix javadoc problems

Repository: directory-fortress-enmasse
Updated Branches:
  refs/heads/master a2148a997 -> 18c7acd7b


FC-73 - Fix javadoc problems


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/commit/18c7acd7
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/tree/18c7acd7
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/diff/18c7acd7

Branch: refs/heads/master
Commit: 18c7acd7bdd0f7d71f6b123f63d2504b4c3c8f39
Parents: a2148a9
Author: Shawn McKinney <sm...@apache.org>
Authored: Mon Mar 2 01:05:33 2015 -0600
Committer: Shawn McKinney <sm...@apache.org>
Committed: Mon Mar 2 01:05:33 2015 -0600

----------------------------------------------------------------------
 README.txt | 10 ++++++++++
 pom.xml    |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/blob/18c7acd7/README.txt
----------------------------------------------------------------------
diff --git a/README.txt b/README.txt
index ddf9fc9..87ad301 100755
--- a/README.txt
+++ b/README.txt
@@ -68,6 +68,16 @@ c. Run maven install:
 d. Build the javadoc:
 # mvn javadoc:javadoc
 
+javadoc note: if using java 8, add this param to the pom.xml:
+<plugin>
+    ...
+    <artifactId>maven-javadoc-plugin</artifactId>
+    <configuration>
+        <additionalparam>-Xdoclint:none</additionalparam>
+        ...
+    </configuration>
+</plugin>
+
 f. To view Service-level documentation, point your web browser here:
 file:///[directory-fortress-enmasse]/target/site/apidocs/org/apache/directory/fortress/rest/FortressServiceImpl.html
 

http://git-wip-us.apache.org/repos/asf/directory-fortress-enmasse/blob/18c7acd7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 9d5144b..54a2017 100755
--- a/pom.xml
+++ b/pom.xml
@@ -326,7 +326,7 @@
           <author>true</author>
           <doctitle>${project.name} Javadoc ${project.version}</doctitle>
           <windowtitle>Apache ${project.name} Javadoc ${project.version}</windowtitle>
-          <additionalparam>-Xdoclint:none</additionalparam>
+          <!--<additionalparam>-Xdoclint:none</additionalparam>-->
         </configuration>
         <executions>
           <execution>