This is an automated email from the ASF dual-hosted git repository.
ghenzler pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-junit-healthcheck.git
The following commit(s) were added to refs/heads/master by this push:
new a9e947c SLING-8354 Migrate to Felix HC API
a9e947c is described below
commit a9e947c25401db062ae3cd7b5f1fde1db649c1b6
Author: georg.henzler <[email protected]>
AuthorDate: Wed Aug 5 01:20:50 2020 +0200
SLING-8354 Migrate to Felix HC API
---
pom.xml | 6 +++---
.../org/apache/sling/junit/healthcheck/impl/JUnitHealthCheck.java | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index 5ff04fa..02236d9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,9 +103,9 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>org.apache.sling</groupId>
- <artifactId>org.apache.sling.hc.core</artifactId>
- <version>1.0.4</version>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.healthcheck.api</artifactId>
+ <version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
diff --git
a/src/main/java/org/apache/sling/junit/healthcheck/impl/JUnitHealthCheck.java
b/src/main/java/org/apache/sling/junit/healthcheck/impl/JUnitHealthCheck.java
index ad1f2e9..1060095 100644
---
a/src/main/java/org/apache/sling/junit/healthcheck/impl/JUnitHealthCheck.java
+++
b/src/main/java/org/apache/sling/junit/healthcheck/impl/JUnitHealthCheck.java
@@ -33,9 +33,9 @@ import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.PropertyUnbounded;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.Service;
-import org.apache.sling.hc.api.HealthCheck;
-import org.apache.sling.hc.api.Result;
-import org.apache.sling.hc.util.FormattingResultLog;
+import org.apache.felix.hc.api.HealthCheck;
+import org.apache.felix.hc.api.Result;
+import org.apache.felix.hc.api.FormattingResultLog;
import org.apache.sling.junit.Renderer;
import org.apache.sling.junit.TestSelector;
import org.apache.sling.junit.TestsManager;