Author: rombert
Date: Tue May 7 15:13:05 2013
New Revision: 1479937
URL: http://svn.apache.org/r1479937
Log:
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.
Modified:
sling/trunk/bundles/auth/form/pom.xml
sling/trunk/bundles/commons/classloader/pom.xml
sling/trunk/bundles/commons/threads/pom.xml
sling/trunk/bundles/scripting/api/pom.xml
sling/trunk/launchpad/test-fragment/pom.xml
Modified: sling/trunk/bundles/auth/form/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/auth/form/pom.xml?rev=1479937&r1=1479936&r2=1479937&view=diff
==============================================================================
--- sling/trunk/bundles/auth/form/pom.xml (original)
+++ sling/trunk/bundles/auth/form/pom.xml Tue May 7 15:13:05 2013
@@ -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>
Modified: sling/trunk/bundles/commons/classloader/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/classloader/pom.xml?rev=1479937&r1=1479936&r2=1479937&view=diff
==============================================================================
--- sling/trunk/bundles/commons/classloader/pom.xml (original)
+++ sling/trunk/bundles/commons/classloader/pom.xml Tue May 7 15:13:05 2013
@@ -128,6 +128,10 @@
</reporting>
<dependencies>
<dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
Modified: sling/trunk/bundles/commons/threads/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/threads/pom.xml?rev=1479937&r1=1479936&r2=1479937&view=diff
==============================================================================
--- sling/trunk/bundles/commons/threads/pom.xml (original)
+++ sling/trunk/bundles/commons/threads/pom.xml Tue May 7 15:13:05 2013
@@ -84,6 +84,10 @@
</reporting>
<dependencies>
<dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
Modified: sling/trunk/bundles/scripting/api/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/api/pom.xml?rev=1479937&r1=1479936&r2=1479937&view=diff
==============================================================================
--- sling/trunk/bundles/scripting/api/pom.xml (original)
+++ sling/trunk/bundles/scripting/api/pom.xml Tue May 7 15:13:05 2013
@@ -67,6 +67,10 @@
<dependencies>
<dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ <dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
Modified: sling/trunk/launchpad/test-fragment/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/launchpad/test-fragment/pom.xml?rev=1479937&r1=1479936&r2=1479937&view=diff
==============================================================================
--- sling/trunk/launchpad/test-fragment/pom.xml (original)
+++ sling/trunk/launchpad/test-fragment/pom.xml Tue May 7 15:13:05 2013
@@ -68,4 +68,11 @@
</plugin>
</plugins>
</build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ </dependencies>
</project>