Author: [email protected] Date: Wed May 30 16:13:39 2012 New Revision: 2418 Log: Added tenant wrapper for ace process launcher
Added: trunk/amdatu-process-launcher/ trunk/amdatu-process-launcher/pom.xml Added: trunk/amdatu-process-launcher/pom.xml ============================================================================== --- (empty file) +++ trunk/amdatu-process-launcher/pom.xml Wed May 30 16:13:39 2012 @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010-2012 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. +--> +<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</groupId> + <artifactId>amdatu</artifactId> + <version>6-RC4</version> + </parent> + <artifactId>org.amdatu.processlauncher</artifactId> + <version>0.3.0-SNAPSHOT</version> + <packaging>bundle</packaging> + <name>Amdatu - Process Launcher</name> + + <properties> + <org.apache.ace.processlauncher.version>0.8.1-r1341428</org.apache.ace.processlauncher.version> + </properties> + + <repositories> + <repository> + <id>amdatu.releases</id> + <name>Amdatu Release Repository</name> + <url>http://repository.amdatu.org/releases</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>org.apache.ace</groupId> + <artifactId>org.apache.ace.processlauncher</artifactId> + <version>${org.apache.ace.processlauncher.version}</version> + <scope>compile</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <X-MultiTenant-Version>1</X-MultiTenant-Version> + <X-MultiTenant-Bundle-Activator>org.apache.ace.processlauncher.osgi.Activator</X-MultiTenant-Bundle-Activator> + <X-MultiTenant-Binding>BOTH</X-MultiTenant-Binding> + <X-MultiTenant-Scope>(|(org.amdatu.tenant.pid=%TENANTPID%)(!(org.amdatu.tenant.pid=*)))</X-MultiTenant-Scope> + <Bundle-Activator>org.amdatu.tenant.adapter.MultiTenantBundleActivator</Bundle-Activator> + <Embed-Dependency>*;scope=compile;inline=org/apache/ace/processlauncher/**</Embed-Dependency> + <Embed-Transitive>false</Embed-Transitive> + <Import-Package> + *, + org.apache.ace.processlauncher + </Import-Package> + <Export-Package> + org.apache.ace.processlauncher + </Export-Package> + </instructions> + </configuration> + </plugin> + + </plugins> + </build> +</project> _______________________________________________ Amdatu-commits mailing list [email protected] http://lists.amdatu.org/mailman/listinfo/amdatu-commits
