Author: [email protected]
Date: Mon Dec  5 17:09:43 2011
New Revision: 1814

Log:
[sandbox] Multi-Tenant LogService based on adator activator strategy 
(AMDATU-473)

Added:
   sandbox/bdekruijff/amdatu-core/preferences/
   sandbox/bdekruijff/amdatu-core/preferences/pom.xml

Added: sandbox/bdekruijff/amdatu-core/preferences/pom.xml
==============================================================================
--- (empty file)
+++ sandbox/bdekruijff/amdatu-core/preferences/pom.xml  Mon Dec  5 17:09:43 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.preferences</artifactId>
+  <packaging>bundle</packaging>
+  <name>Amdatu Core - Multi-Tenant Preferences</name>
+  <description></description>
+
+  <dependencies> 
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.prefs</artifactId>
+      <version>1.0.4</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.apache.felix.prefs.impl.PreferencesManager</MultiTenant-Bundle-Activator>
+            <MultiTenant-Scope>platform,tenant</MultiTenant-Scope>
+            
<Bundle-Activator>org.amdatu.core.tenant.MultiTenantBundleActivator</Bundle-Activator>
+            
<Bundle-SymbolicName>org.amdatu.core.preferences</Bundle-SymbolicName>
+            
<Embed-Dependency>*;scope=compile;inline=org/apache/**</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