SLING-7617 maintain hc tags properties with correct name "hc.tags"
diff --git a/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java b/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
index 27e84f8..ab2b595 100644
--- a/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
+++ b/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
@@ -63,7 +63,7 @@
             description="Checks that all OSGi configurations/bundles are successfully installed by the OSGi Installer (and are not skipped for some reason).")
     protected static @interface Configuration {
         @AttributeDefinition(name="Tags", description="Tags with which this healthcheck is associated")
-        String[] tags() default {"installer", "osgi"};
+        String[] hc_tags() default {"installer", "osgi"};
         
         @AttributeDefinition(name="URL Prefixes to consider", description = "Only those OSGi configurations/bundles whose location are starting with one of the given URL prefixes are checked (whether they are installed correctly). Open /system/console/osgi-installer for a list of valid prefixes.")
         String[] urlPrefixes() default "jcrinstall:/apps/";