blob: 99ab538ca42d60903c8b380cde6d7cab5d54693b [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>
Patrick Brady57b5eef2017-02-10 15:00:49 -080061 <Export-Service>org.openecomp.appc.licmgr.LicenseManager</Export-Service>
Patrick Bradyc7d00752017-06-01 10:45:37 -070062
63 <Embed-Dependency>
64 artifactId=!dblib-provider|slf4j-api|jcl-over-slf4j;scope=compile|runtime;inline=false
65 </Embed-Dependency>
66
67 <Import-Package>
68 org.openecomp.appc.licmgr,org.openecomp.appc.licmgr.exception,org.openecomp.appc.licmgr.objects,
69 *;resolution:=optional
70 </Import-Package>
71
72 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady57b5eef2017-02-10 15:00:49 -080073 </instructions>
74 </configuration>
75 </plugin>
76 </plugins>
77 </build>
78
79</project>