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 49985C895 for ; Wed, 19 Jun 2013 10:38:21 +0000 (UTC) Received: (qmail 62739 invoked by uid 500); 19 Jun 2013 10:38:21 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 62686 invoked by uid 500); 19 Jun 2013 10:38:17 -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 62677 invoked by uid 99); 19 Jun 2013 10:38:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jun 2013 10:38:16 +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 Jun 2013 10:38:13 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E7B0B23888FE for ; Wed, 19 Jun 2013 10:37:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1494540 - in /httpcomponents/benchmark/httpclient/trunk: .gitignore build.gradle Date: Wed, 19 Jun 2013 10:37:53 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130619103753.E7B0B23888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Wed Jun 19 10:37:53 2013 New Revision: 1494540 URL: http://svn.apache.org/r1494540 Log: Migrated to Gradle for build and execution automation Added: httpcomponents/benchmark/httpclient/trunk/build.gradle Modified: httpcomponents/benchmark/httpclient/trunk/.gitignore Modified: httpcomponents/benchmark/httpclient/trunk/.gitignore URL: http://svn.apache.org/viewvc/httpcomponents/benchmark/httpclient/trunk/.gitignore?rev=1494540&r1=1494539&r2=1494540&view=diff ============================================================================== --- httpcomponents/benchmark/httpclient/trunk/.gitignore (original) +++ httpcomponents/benchmark/httpclient/trunk/.gitignore Wed Jun 19 10:37:53 2013 @@ -1,7 +1,5 @@ -.classpath -.project -.settings -.pydevproject -.clover target -maven-eclipse.xml +.gradle +build +.idea +*.iml Added: httpcomponents/benchmark/httpclient/trunk/build.gradle URL: http://svn.apache.org/viewvc/httpcomponents/benchmark/httpclient/trunk/build.gradle?rev=1494540&view=auto ============================================================================== --- httpcomponents/benchmark/httpclient/trunk/build.gradle (added) +++ httpcomponents/benchmark/httpclient/trunk/build.gradle Wed Jun 19 10:37:53 2013 @@ -0,0 +1,26 @@ +apply plugin: 'java' +apply plugin: 'application' + +repositories { + mavenCentral() +} + +version = '0.1-SNAPSHOT' + +sourceCompatibility = '1.6' + +dependencies { + compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '8.1.7.v20120910' + compile group: 'org.eclipse.jetty', name: 'jetty-client', version: '8.1.7.v20120910' + compile group: 'org.slf4j', name: 'slf4j-api', version: '1.5.10' + compile group: 'org.slf4j', name: 'slf4j-nop', version: '1.5.10' + compile group: 'org.apache.httpcomponents', name: 'httpcore', version: '4.3-beta2' + compile group: 'org.apache.httpcomponents', name: 'httpcore-nio', version: '4.3-beta2' + compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.3-beta2' + compile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0-beta4' + compile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: '4.0-beta4' + compile group: 'com.ning', name: 'async-http-client', version: '1.7.12' +} + +mainClassName = 'org.apache.http.client.benchmark.Benchmark' +