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 2013/07/03 21:14:40 UTC

svn commit: r1499525 - in /httpcomponents/benchmark/httpclient/branches/4.2.x: .gitignore build.gradle

Author: olegk
Date: Wed Jul  3 19:14:40 2013
New Revision: 1499525

URL: http://svn.apache.org/r1499525
Log:
Migrated to Gradle for build and execution automation

Added:
    httpcomponents/benchmark/httpclient/branches/4.2.x/build.gradle
Modified:
    httpcomponents/benchmark/httpclient/branches/4.2.x/.gitignore

Modified: httpcomponents/benchmark/httpclient/branches/4.2.x/.gitignore
URL: http://svn.apache.org/viewvc/httpcomponents/benchmark/httpclient/branches/4.2.x/.gitignore?rev=1499525&r1=1499524&r2=1499525&view=diff
==============================================================================
--- httpcomponents/benchmark/httpclient/branches/4.2.x/.gitignore (original)
+++ httpcomponents/benchmark/httpclient/branches/4.2.x/.gitignore Wed Jul  3 19:14:40 2013
@@ -3,3 +3,4 @@ target
 *.iml
 build
 .gradle
+

Added: httpcomponents/benchmark/httpclient/branches/4.2.x/build.gradle
URL: http://svn.apache.org/viewvc/httpcomponents/benchmark/httpclient/branches/4.2.x/build.gradle?rev=1499525&view=auto
==============================================================================
--- httpcomponents/benchmark/httpclient/branches/4.2.x/build.gradle (added)
+++ httpcomponents/benchmark/httpclient/branches/4.2.x/build.gradle Wed Jul  3 19:14:40 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'
+