You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by de...@apache.org on 2017/09/13 11:11:36 UTC

[1/2] flume git commit: FLUME-3175. Turn off doclint for javadoc generation

Repository: flume
Updated Branches:
  refs/heads/trunk 54e2728a8 -> b359f32e3


FLUME-3175. Turn off doclint for javadoc generation

With Java 8's new doclint feature the javadoc generation breaks due to the
strict checking so adding -Xdoclint:none to the maven-javadoc-plugin's
configuration.

This closes #168

Reviewers: Bessenyei Balázs Donát, Ferenc Szabo

(Denes Arvay via Denes Arvay)


Project: http://git-wip-us.apache.org/repos/asf/flume/repo
Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/1541f089
Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/1541f089
Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/1541f089

Branch: refs/heads/trunk
Commit: 1541f089a5dec9b21549f6a6e961ef835a8b68bb
Parents: 54e2728
Author: Denes Arvay <de...@apache.org>
Authored: Mon Sep 11 21:58:14 2017 +0200
Committer: Denes Arvay <de...@apache.org>
Committed: Wed Sep 13 12:54:59 2017 +0200

----------------------------------------------------------------------
 pom.xml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flume/blob/1541f089/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7b56717..4f498a0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -519,6 +519,9 @@ limitations under the License.
                 </goals>
               </execution>
             </executions>
+            <configuration>
+              <additionalparam>-Xdoclint:none</additionalparam>
+            </configuration>
           </plugin>
 
           <plugin>


[2/2] flume git commit: Set the copyright date dynamically in documentation footer

Posted by de...@apache.org.
Set the copyright date dynamically in documentation footer

Display "2009-current year" instead of the hardcoded "2009-2012".

This closes #171

Reviewers: Ferenc Szabo

(Denes Arvay via Denes Arvay)


Project: http://git-wip-us.apache.org/repos/asf/flume/repo
Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/b359f32e
Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/b359f32e
Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/b359f32e

Branch: refs/heads/trunk
Commit: b359f32e324fb815c0506f3bad016187a0b7765e
Parents: 1541f08
Author: Denes Arvay <de...@apache.org>
Authored: Tue Sep 12 17:44:13 2017 +0200
Committer: Denes Arvay <de...@apache.org>
Committed: Wed Sep 13 12:56:26 2017 +0200

----------------------------------------------------------------------
 flume-ng-doc/sphinx/conf.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flume/blob/b359f32e/flume-ng-doc/sphinx/conf.py
----------------------------------------------------------------------
diff --git a/flume-ng-doc/sphinx/conf.py b/flume-ng-doc/sphinx/conf.py
index 97ad1df..989d32b 100644
--- a/flume-ng-doc/sphinx/conf.py
+++ b/flume-ng-doc/sphinx/conf.py
@@ -17,6 +17,7 @@
 
 import sys
 import os
+from datetime import date
 
 # eventlet/gevent should not monkey patch anything.
 os.environ["GEVENT_NOPATCH"] = "yes"
@@ -57,7 +58,7 @@ master_doc = 'index'
 
 # General information about the project.
 project = 'Apache Flume'
-copyright = '2009-2012 The Apache Software Foundation'
+copyright = '2009-%s The Apache Software Foundation' % date.today().year
 
 keep_warnings = True