Author: ivol37 at gmail.com Date: Wed Dec 15 12:31:34 2010 New Revision: 497
Log: [AMDATU-165] Added missing pom Added: trunk/amdatu-authentication/tokenprovider/pom.xml Added: trunk/amdatu-authentication/tokenprovider/pom.xml ============================================================================== --- (empty file) +++ trunk/amdatu-authentication/tokenprovider/pom.xml Wed Dec 15 12:31:34 2010 @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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>org.amdatu.authentication</artifactId> + <version>0.1.0-SNAPSHOT</version> + </parent> + <groupId>org.amdatu.authentication</groupId> + <artifactId>tokenprovider</artifactId> + <packaging>bundle</packaging> + <name>Amdatu Authentication - Token provider</name> + <description>This bundle includes a token provider for token distribution</description> + + <dependencies> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>1.4</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.amdatu.web.rest</groupId> + <artifactId>jaxrs</artifactId> + <version>${platform.version}</version> + <scope>provided</scope> + <type>bundle</type> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + <configuration> + <instructions> + <Bundle-Activator>org.amdatu.authentication.tokenprovider.osgi.Activator</Bundle-Activator> + <Bundle-SymbolicName>org.amdatu.authentication.tokenprovider</Bundle-SymbolicName> + <Export-Package>org.amdatu.authentication.tokenprovider</Export-Package> + <Embed-Dependency>*;scope=compile</Embed-Dependency> + <DynamicImport-Package> + org.apache.log4j, + org.apache.avalon.framework.logger, + org.apache.log + </DynamicImport-Package> + </instructions> + </configuration> + </plugin> + </plugins> + </build> +</project>
