This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag org.apache.sling.fsresource-0.9.2-incubator in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-fsresource.git
commit 19d32c4455eb8367b1135dd4e2634fca0a953cc0 Author: Carsten Ziegeler <[email protected]> AuthorDate: Wed Apr 22 06:20:35 2009 +0000 Fix fsresource provider and sling plugin after recent refactorings. git-svn-id: https://svn.apache.org/repos/asf/incubator/sling/trunk/bundles/extensions/fsresource@767389 13f79535-47bb-0310-9956-ffa450edef68 --- pom.xml | 2 +- .../java/org/apache/sling/fsprovider/internal/FsResourceProvider.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index bb2916e..a502d97 100644 --- a/pom.xml +++ b/pom.xml @@ -55,7 +55,7 @@ <configuration> <instructions> <Private-Package> - org.apache.sling.fsprovider.* + org.apache.sling.fsprovider.internal </Private-Package> </instructions> </configuration> diff --git a/src/main/java/org/apache/sling/fsprovider/internal/FsResourceProvider.java b/src/main/java/org/apache/sling/fsprovider/internal/FsResourceProvider.java index 60c8ae4..0bc19e5 100644 --- a/src/main/java/org/apache/sling/fsprovider/internal/FsResourceProvider.java +++ b/src/main/java/org/apache/sling/fsprovider/internal/FsResourceProvider.java @@ -45,10 +45,10 @@ import org.osgi.service.component.ComponentContext; * and the file system path from where files and folders are mapped into the * resource ({@link #PROP_PROVIDER_FILE}). * - * @scr.component name="org.apache.sling.fsprovider.FsResourceProvider" + * @scr.component name="org.apache.sling.fsprovider.internal.FsResourceProvider" * label="%resource.resolver.name" * description="%resource.resolver.description" - * factory="org.apache.sling.fsprovider.FsResourceProviderFactory" + * factory="org.apache.sling.fsprovider.internal.FsResourceProviderFactory" * @scr.service * @scr.property name="service.description" value="Sling Filesystem Resource * Provider" -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
