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/06/19 12:37:53 UTC

svn commit: r1494540 - in /httpcomponents/benchmark/httpclient/trunk: .gitignore build.gradle

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'
+