This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-bundle-archetype.git
commit 908bca57bb18f3c06f2ab6fcfe40c380438a1584 Author: Stefan Egli <[email protected]> AuthorDate: Tue Sep 10 13:29:33 2013 +0000 SLING-3051 : updated maven plugin and dependency versions of maven-scr-plugin and org.apache.felix.scr.annotations to work properly with m2eclipse (otherwise complains about lifecycle-mapping for scr goal not being mapped, and with these versions it works perfect). Plus adjusting the outputDirectory as suggested in SLING-3019 git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1521475 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/resources/archetype-resources/pom.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/resources/archetype-resources/pom.xml b/src/main/resources/archetype-resources/pom.xml index 6e09b4f..b9016c0 100644 --- a/src/main/resources/archetype-resources/pom.xml +++ b/src/main/resources/archetype-resources/pom.xml @@ -30,7 +30,7 @@ <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> - <version>1.7.2</version> + <version>1.13.0</version> <executions> <execution> <id>generate-scr-descriptor</id> @@ -39,6 +39,9 @@ </goals> </execution> </executions> + <configuration> + <outputDirectory>${project.build.directory}/classes</outputDirectory> + </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> @@ -94,7 +97,7 @@ <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> - <version>1.6.0</version> + <version>1.9.0</version> <scope>provided</scope> </dependency> <dependency> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
