You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 10:17:08 UTC

[sling-org-apache-sling-testing-clients] 10/15: Fix compilation errors

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.testing.clients-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-clients.git

commit 429e5f4d9c8538c75414a5bf0077881a45af18f6
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Wed Aug 10 05:22:15 2016 +0000

    Fix compilation errors
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/http/clients@1755669 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml                                                            | 7 +------
 .../org/apache/sling/testing/clients/html/MicrodataClient.java     | 6 +++---
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3c80c86..471bbcf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,11 +79,6 @@
             <groupId>org.osgi</groupId>
             <artifactId>org.osgi.core</artifactId>
         </dependency>
-       <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.scr.annotations</artifactId>
-            <scope>provided</scope>
-        </dependency>
         <dependency>
             <groupId>org.apache.commons</groupId>
             <artifactId>commons-exec</artifactId>
@@ -156,7 +151,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.hapi.client</artifactId>
-            <version>1.0.0-SNAPSHOT</version>
+            <version>1.0.1-SNAPSHOT</version>
         </dependency>
     </dependencies>
 </project>
diff --git a/src/main/java/org/apache/sling/testing/clients/html/MicrodataClient.java b/src/main/java/org/apache/sling/testing/clients/html/MicrodataClient.java
index 810a28c..ab90d90 100644
--- a/src/main/java/org/apache/sling/testing/clients/html/MicrodataClient.java
+++ b/src/main/java/org/apache/sling/testing/clients/html/MicrodataClient.java
@@ -18,18 +18,18 @@
  ******************************************************************************/
 package org.apache.sling.testing.clients.html;
 
+import java.net.URI;
+
 import org.apache.http.HttpEntity;
 import org.apache.http.impl.client.CloseableHttpClient;
 import org.apache.sling.hapi.client.HtmlClient;
-import org.apache.sling.hapi.client.microdata.MicrodataDocument;
+import org.apache.sling.hapi.client.impl.microdata.MicrodataDocument;
 import org.apache.sling.testing.clients.ClientException;
 import org.apache.sling.testing.clients.SlingClient;
 import org.apache.sling.testing.clients.SlingClientConfig;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import java.net.URI;
-
 public class MicrodataClient extends SlingClient implements HtmlClient {
     protected static final Logger LOG = LoggerFactory.getLogger(MicrodataClient.class);
 

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.