You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2014/03/19 15:39:32 UTC

svn commit: r1579241 - /httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle

Author: olegk
Date: Wed Mar 19 14:39:32 2014
New Revision: 1579241

URL: http://svn.apache.org/r1579241
Log:
Added doc title and copyright notice to javadocs

Modified:
    httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle

Modified: httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle?rev=1579241&r1=1579240&r2=1579241&view=diff
==============================================================================
--- httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle (original)
+++ httpcomponents/httpclient-android/branches/4.3.3-android/build.gradle Wed Mar 19 14:39:32 2014
@@ -47,6 +47,8 @@ version = HC_VER
 
 ext.isRelease = !version.endsWith('-SNAPSHOT')
 
+ext.inceptionYear = '1999'
+
 android {
 
     compileSdkVersion 17
@@ -117,6 +119,13 @@ android.libraryVariants.all { variant ->
             dependsOn variant.javaCompile
             source = variant.javaCompile.source
             classpath = files(android.plugin.runtimeJarList, variant.javaCompile.classpath.files)
+            tvaitle "Apache HttpClient for Android $HC_VER API"
+            configure (options) {
+                docTitle "Apache HttpClient for Android $HC_VER API"
+                bottom "Copyright © ${inceptionYear}-${Calendar.instance.get(Calendar.YEAR)} " +
+                        "<a href=\"http://www.apache.org/\">The Apache Software Foundation</a>. " +
+                        "All rights reserved."
+            }
         }
 
         task createAndroidJavadocJar(type: Jar) {