Author: cziegeler
Date: Thu Jun 14 09:24:43 2012
New Revision: 1350152
URL: http://svn.apache.org/viewvc?rev=1350152&view=rev
Log:
SLING-2396 : Add new resourceresolver project
Added:
sling/trunk/bundles/resourceresolver/
sling/trunk/bundles/resourceresolver/pom.xml (with props)
sling/trunk/bundles/resourceresolver/src/
sling/trunk/bundles/resourceresolver/src/main/
sling/trunk/bundles/resourceresolver/src/main/java/
sling/trunk/bundles/resourceresolver/src/main/java/org/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/impl/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/impl/console/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/impl/helper/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/impl/mapping/
sling/trunk/bundles/resourceresolver/src/main/java/org/apache/sling/resourceresolver/impl/tree/
sling/trunk/bundles/resourceresolver/src/main/resources/
sling/trunk/bundles/resourceresolver/src/main/resources/OSGI-INF/
sling/trunk/bundles/resourceresolver/src/main/resources/OSGI-INF/metatype/
sling/trunk/bundles/resourceresolver/src/main/test/
sling/trunk/bundles/resourceresolver/src/main/test/org/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/resourceresolver/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/resourceresolver/impl/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/resourceresolver/impl/helper/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/resourceresolver/impl/mapping/
sling/trunk/bundles/resourceresolver/src/main/test/org/apache/sling/resourceresolver/impl/tree/
Added: sling/trunk/bundles/resourceresolver/pom.xml
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/resourceresolver/pom.xml?rev=1350152&view=auto
==============================================================================
--- sling/trunk/bundles/resourceresolver/pom.xml (added)
+++ sling/trunk/bundles/resourceresolver/pom.xml Thu Jun 14 09:24:43 2012
@@ -0,0 +1,173 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>sling</artifactId>
+ <version>13-SNAPSHOT</version>
+ <relativePath>../../../parent/pom.xml</relativePath>
+ </parent>
+
+ <artifactId>org.apache.sling.resourceresolver</artifactId>
+ <version>0.1.0-SNAPSHOT</version>
+ <packaging>bundle</packaging>
+
+ <name>Apache Sling Resource Resolver</name>
+ <description>
+ This bundle provides the Resource Resolver and the Resource Resolver
Factory.
+ </description>
+
+ <scm>
+ <connection>
+
scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/resourceresolver
+ </connection>
+ <developerConnection>
+
scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/resourceresolver
+ </developerConnection>
+ <url>
+ http://svn.apache.org/viewvc/sling/trunk/bundles/resourceresolver
+ </url>
+ </scm>
+
+ <properties>
+ <site.jira.version.id>12314286</site.jira.version.id>
+ <site.javadoc.exclude>**.internal.**</site.javadoc.exclude>
+ </properties>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-scr-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>maven-sling-plugin</artifactId>
+ <version>2.1.0</version>
+ <executions>
+ <execution>
+ <id>generate-adapter-metadata</id>
+ <phase>process-classes</phase>
+ <goals>
+ <goal>generate-adapter-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Import-Package>
+ javax.annotation;resolution:=optional,
+ org.apache.sling.api.resource;provide:=true,
+ org.apache.sling.commons.osgi;version="$(@)",
+ *
+ </Import-Package>
+ <Private-Package>
+ org.apache.sling.resourceresolver.impl.*
+ </Private-Package>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.scr.annotations</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>javax.jcr</groupId>
+ <artifactId>jcr</artifactId>
+ <version>2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.osgi</groupId>
+ <artifactId>org.osgi.compendium</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.api</artifactId>
+ <version>2.2.5-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.commons.osgi</artifactId>
+ <version>2.1.0</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.2.1</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>adapter-annotations</artifactId>
+ <version>1.0.0</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- For the Console Plugin of the ResourceResolverFactoryImpl -->
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </dependency>
+
+ <!-- Testing -->
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-simple</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.mockito</groupId>
+ <artifactId>mockito-all</artifactId>
+ <version>1.8.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit-addons</groupId>
+ <artifactId>junit-addons</artifactId>
+ <version>1.4</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>org.apache.felix.framework</artifactId>
+ <version>3.0.8</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Propchange: sling/trunk/bundles/resourceresolver/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: sling/trunk/bundles/resourceresolver/pom.xml
------------------------------------------------------------------------------
svn:keywords = Id