Change to CCSDK and ODL Carbon
[appc.git] / appc-dispatcher / appc-license-manager / appc-license-manager-core / pom.xml
1 <?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>
8             <version>1.1.0-SNAPSHOT</version>
9           </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.onap.ccsdk.sli.core</groupId>
34             <artifactId>sli-common</artifactId>
35             <scope>compile</scope>
36         </dependency>
37         <dependency>
38             <groupId>org.onap.ccsdk.sli.core</groupId>
39             <artifactId>sli-provider</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.ccsdk.sli.core</groupId>
43             <artifactId>dblib-provider</artifactId>
44         </dependency>
45     </dependencies>
46
47     <build>
48         <plugins>
49             <plugin>
50                 <groupId>org.apache.felix</groupId>
51                 <artifactId>maven-bundle-plugin</artifactId>
52                 <configuration>
53                     <instructions>
54                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
55                         <Bundle-Version>${project.version}</Bundle-Version>
56                         <Export-Service>org.openecomp.appc.licmgr.LicenseManager</Export-Service>
57
58                         <Embed-Dependency>
59                             artifactId=!dblib-provider|slf4j-api|jcl-over-slf4j;scope=compile|runtime;inline=false
60                         </Embed-Dependency>
61
62                         <Import-Package>
63                             org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects,
64                             *;resolution:=optional
65                         </Import-Package>
66
67                         <Embed-Transitive>true</Embed-Transitive>
68                     </instructions>
69                 </configuration>
70             </plugin>
71         </plugins>
72     </build>
73
74 </project>