This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.junit.healthcheck-1.0.4 in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-healthcheck.git
commit fea96a67048bc9b6fba005e6b574283a82c888c8 Author: Bertrand Delacretaz <[email protected]> AuthorDate: Thu Feb 24 14:14:26 2011 +0000 SLING-1981 - fork the stanbol helper classes here to avoid depending on SNAPSHOTS - the http stuff might move to httpclient anyway git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/junit/remote@1074158 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 6 +++--- .../apache/sling/junit/remote/testrunner/SlingRemoteTestRunner.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index d2a6b56..2e06348 100644 --- a/pom.xml +++ b/pom.xml @@ -57,9 +57,9 @@ <version>1.5.11</version> </dependency> <dependency> - <groupId>org.apache.stanbol</groupId> - <artifactId>org.apache.stanbol.commons.testing.http</artifactId> - <version>0.9-SNAPSHOT</version> + <groupId>org.apache.sling</groupId> + <artifactId>org.apache.sling.testing.tools</artifactId> + <version>0.1.1-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> diff --git a/src/main/java/org/apache/sling/junit/remote/testrunner/SlingRemoteTestRunner.java b/src/main/java/org/apache/sling/junit/remote/testrunner/SlingRemoteTestRunner.java index f10a2a3..ba3428e 100644 --- a/src/main/java/org/apache/sling/junit/remote/testrunner/SlingRemoteTestRunner.java +++ b/src/main/java/org/apache/sling/junit/remote/testrunner/SlingRemoteTestRunner.java @@ -25,9 +25,9 @@ import org.apache.http.impl.client.DefaultHttpClient; import org.apache.sling.commons.json.JSONArray; import org.apache.sling.commons.json.JSONObject; import org.apache.sling.commons.json.JSONTokener; -import org.apache.stanbol.commons.testing.http.Request; -import org.apache.stanbol.commons.testing.http.RequestBuilder; -import org.apache.stanbol.commons.testing.http.RequestExecutor; +import org.apache.sling.testing.tools.http.Request; +import org.apache.sling.testing.tools.http.RequestBuilder; +import org.apache.sling.testing.tools.http.RequestExecutor; import org.junit.internal.AssumptionViolatedException; import org.junit.internal.runners.model.EachTestNotifier; import org.junit.runner.Description; -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
