blob: 66b31479829a01fb6120016525f0591f537012ab [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
2<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/xsd/maven-4.0.0.xsd">
3
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.openecomp.appc</groupId>
7 <artifactId>appc-license-manager</artifactId>
Patrick Brady03682da2017-03-10 13:07:19 -08008 <version>1.1.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -08009 </parent>
10 <artifactId>appc-license-manager-core</artifactId>
11 <packaging>bundle</packaging>
12
13 <name>APPC License Manager Bundle</name>
14 <description>appc-license-manager-core OSGi bundle project.</description>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.openecomp.appc</groupId>
19 <artifactId>appc-common</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.openecomp.appc</groupId>
24 <artifactId>appc-license-manager-api</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>com.sun.mail</groupId>
29 <artifactId>javax.mail</artifactId>
30 <version>1.5.0</version>
31 </dependency>
32 <dependency>
33 <groupId>org.openecomp.sdnc.core</groupId>
34 <artifactId>sli-common</artifactId>
35 <scope>compile</scope>
36 </dependency>
37 <dependency>
38 <groupId>junit</groupId>
39 <artifactId>junit</artifactId>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.openecomp.sdnc.core</groupId>
44 <artifactId>sli-provider</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.openecomp.sdnc.core</groupId>
48 <artifactId>dblib-provider</artifactId>
49 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>maven-bundle-plugin</artifactId>
57 <configuration>
58 <instructions>
59 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
60 <Bundle-Version>${project.version}</Bundle-Version>
61 <Embed-Dependency>!dblib-provider,appc-common,eelf-core,logback-core,logback-classic,javax.mail;scope=compile|runtime;inline=false</Embed-Dependency>
62 <Embed-Transitive>true</Embed-Transitive>
63 <Export-Service>org.openecomp.appc.licmgr.LicenseManager</Export-Service>
64 <Import-Package>org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects,javax.mail.internet,!javax.mail,!groovy.lang,!javax.jms,!org.apache.log,!org.apache.log4j.*,!org.codehaus.jackson.*,!org.codehaus.jackson.map.*,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!org.jasypt.*,!com.ibm.icu.*,!com.sun.faces.*,*</Import-Package>
65 </instructions>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70
71</project>