Author: [email protected]
Date: Mon Dec  5 17:10:52 2011
New Revision: 1822

Log:
[sandbox] Multi-Tenant UserAdmin Preferences based storage (AMDATU-468)

Added:
   sandbox/bdekruijff/amdatu-core/useradminstore-prefs/
   sandbox/bdekruijff/amdatu-core/useradminstore-prefs/pom.xml
Modified:
   sandbox/bdekruijff/amdatu-core/pom.xml

Modified: sandbox/bdekruijff/amdatu-core/pom.xml
==============================================================================
--- sandbox/bdekruijff/amdatu-core/pom.xml      (original)
+++ sandbox/bdekruijff/amdatu-core/pom.xml      Mon Dec  5 17:10:52 2011
@@ -86,5 +86,6 @@
     <module>useradmin</module>
     <module>deployment-tenantconf</module>
     <module>fileinstall-tenantconf</module>
+    <module>useradminstore-prefs</module>
   </modules>
 </project>
\ No newline at end of file

Added: sandbox/bdekruijff/amdatu-core/useradminstore-prefs/pom.xml
==============================================================================
--- (empty file)
+++ sandbox/bdekruijff/amdatu-core/useradminstore-prefs/pom.xml Mon Dec  5 
17:10:52 2011
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright (c) 2010, 2011 The Amdatu Foundation
+
+  Licensed 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.verning 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.amdatu.core</groupId>
+    <artifactId>org.amdatu.core</artifactId>
+    <version>0.3.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>org.amdatu.core.useradminstore.prefs</artifactId>
+  <packaging>bundle</packaging>
+  <name>Amdatu Core - Multi-Tenant UserAdmin Preferences storage</name>
+  <description></description>
+
+  <dependencies> 
+    <dependency>
+      <groupId>org.ops4j.pax.useradmin</groupId>
+      <artifactId>pax-useradmin-provider-preferences</artifactId>
+      <version>0.0.1-SNAPSHOT</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            
<MultiTenant-Bundle-Activator>org.ops4j.pax.useradmin.provider.preferences.internal.Activator</MultiTenant-Bundle-Activator>
+            <MultiTenant-Scope>platform,tenant</MultiTenant-Scope>
+            
<Bundle-Activator>org.amdatu.core.tenant.MultiTenantBundleActivator</Bundle-Activator>
+            
<Bundle-SymbolicName>org.amdatu.core.useradminstore.prefs</Bundle-SymbolicName>
+            
<Embed-Dependency>*;scope=compile;inline=org/ops4j/pax/useradmin/provider/preferences/**</Embed-Dependency>
+            <Embed-Transitive>false</Embed-Transitive>
+            <Import-Package>
+               org.amdatu.core.tenant;version="[1.0,2)",
+               *
+            </Import-Package>
+            <Export-Package>
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+      
+    </plugins>
+  </build> 
+</project>
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits

Reply via email to