Return-Path: X-Original-To: apmail-hc-commits-archive@www.apache.org Delivered-To: apmail-hc-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AD95E10462 for ; Wed, 19 Mar 2014 14:46:25 +0000 (UTC) Received: (qmail 49437 invoked by uid 500); 19 Mar 2014 14:46:24 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 49395 invoked by uid 500); 19 Mar 2014 14:46:23 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 49064 invoked by uid 99); 19 Mar 2014 14:46:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2014 14:46:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Mar 2014 14:46:20 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id ECA5223888FE for ; Wed, 19 Mar 2014 14:45:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1579245 - /httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle Date: Wed, 19 Mar 2014 14:45:58 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140319144558.ECA5223888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Wed Mar 19 14:45:58 2014 New Revision: 1579245 URL: http://svn.apache.org/r1579245 Log: Added doc title and copyright notice to javadocs Modified: httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle Modified: httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle URL: http://svn.apache.org/viewvc/httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle?rev=1579245&r1=1579244&r2=1579245&view=diff ============================================================================== --- httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle (original) +++ httpcomponents/httpclient-android/trunk/src/main/resources/build.gradle Wed Mar 19 14:45:58 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) + title "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)} " + + "The Apache Software Foundation. " + + "All rights reserved." + } } task createAndroidJavadocJar(type: Jar) {