SLING-2858 - Maven build fails after upgrading to parent 16: No
annotation processors found in classpath

Add explicit org.apache.felix.scr.annotations dependency where needed.

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1479937 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/pom.xml b/pom.xml
index f11a8b4..b41d10f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -96,6 +96,10 @@
 
     <dependencies>
         <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.auth.core</artifactId>
             <version>1.1.0</version>