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-org-apache-sling-scripting-sightly-compiler-java.git
commit bd046d07d7ee5cbd4ee0af2edf53d3103245929c Author: Radu Cotescu <[email protected]> AuthorDate: Mon Oct 10 15:39:09 2016 +0000 SLING-6125 - Switch HTL to OSGi R6 annotations * removed maven-scr-plugin and configured maven-bundle-plugin to generate SCR metadata * replaced Felix SCR annotations with OSGi Component + Metatype annotations * removed unused dependencies git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1764122 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 45 +++++++++++++-------------------------------- 1 file changed, 13 insertions(+), 32 deletions(-) diff --git a/pom.xml b/pom.xml index 5d3a09e..616e9ea 100644 --- a/pom.xml +++ b/pom.xml @@ -58,25 +58,23 @@ <plugins> <plugin> <groupId>org.apache.felix</groupId> - <artifactId>maven-scr-plugin</artifactId> - <dependencies> - <dependency> - <groupId>javax.jcr</groupId> - <artifactId>jcr</artifactId> - <version>2.0</version> - </dependency> - </dependencies> - </plugin> - <plugin> - <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> + <executions> + <execution> + <id>scr-metadata</id> + <goals> + <goal>manifest</goal> + </goals> + </execution> + </executions> <configuration> + <exportScr>true</exportScr> <instructions> <Provide-Capability> - io.sightly.java; version:Version=1.0, - io.sightly.java; version:Version=1.1, - io.sightly.java; version:Version=1.2 + io.sightly.compiler.java; version:Version=1.0, + io.sightly.compiler.java; version:Version=1.1, + io.sightly.compiler.java; version:Version=1.2 </Provide-Capability> </instructions> </configuration> @@ -120,7 +118,7 @@ <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.scripting.sightly.compiler</artifactId> - <version>1.0.1-SNAPSHOT</version> + <version>1.0.0</version> <scope>provided</scope> </dependency> @@ -151,23 +149,6 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <version>1.9.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.powermock</groupId> - <artifactId>powermock-api-mockito</artifactId> - <version>1.5.5</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-simple</artifactId> - <scope>test</scope> - </dependency> </dependencies> </project> -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
