a767e189c044c7eebf3b18cf94425f97247edce3
[sdnc/core.git] / sli / provider / pom.xml
1 <?xml version="1.0"?>
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         <modelVersion>4.0.0</modelVersion>
4         <parent>
5                 <groupId>org.openecomp.sdnc.core</groupId>
6                 <artifactId>sli</artifactId>
7                 <version>1.1.0-SNAPSHOT</version>
8         </parent>
9         <artifactId>sli-provider</artifactId>
10         <packaging>bundle</packaging>
11         <name>SLI - Provider</name>
12         <properties>
13                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14         </properties>
15         <dependencies>
16                 <dependency>
17                         <groupId>junit</groupId>
18                         <artifactId>junit</artifactId>
19                         <version>3.8.1</version>
20                         <scope>test</scope>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.openecomp.sdnc.core</groupId>
24                         <artifactId>sli-common</artifactId>
25                         <version>${project.version}</version>
26                         <scope>compile</scope>
27                 </dependency>
28                 <dependency>
29                         <groupId>equinoxSDK381</groupId>
30                         <artifactId>org.eclipse.osgi</artifactId>
31                         <version>${equinox.osgi.version}</version>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.slf4j</groupId>
35                         <artifactId>slf4j-api</artifactId>
36                         <version>${slf4j.version}</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.slf4j</groupId>
40                         <artifactId>jcl-over-slf4j</artifactId>
41                         <version>${slf4j.version}</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>commons-lang</groupId>
45                         <artifactId>commons-lang</artifactId>
46                         <version>${commons.lang.version}</version>
47                         <scope>compile</scope>
48                 </dependency>
49
50
51                 <!--
52                 <dependency>
53                         <groupId>org.antlr</groupId>
54                         <artifactId>antlr4</artifactId>
55                         <version>${antlr.version}</version>
56                         <type>jar</type>
57                         <scope>compile</scope>
58                 </dependency>
59                 -->
60
61         </dependencies>
62
63         <build>
64                 <plugins>
65                         <plugin>
66                                 <groupId>org.apache.felix</groupId>
67                                 <artifactId>maven-bundle-plugin</artifactId>
68                                 <version>${bundle.plugin.version}</version>
69                                 <extensions>true</extensions>
70                                 <configuration>
71                                         <instructions>
72                                                 <Bundle-Activator>org.openecomp.sdnc.sli.provider.SvcLogicActivator</Bundle-Activator>
73                                                 <Export-Package>org.openecomp.sdnc.sli.provider;version=${project.version}</Export-Package>
74
75                                                 <DynamicImport-Package>*</DynamicImport-Package>
76                                             <!--
77                                                 <Import-Package>org.openecomp.sdnc.sli.*,org.osgi.framework.*,org.slf4j.*,com.vmware.vim25.*,org.apache.xerces.*,com.mysql.jdbc.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*</Import-Package>
78                         -->
79
80                         <Import-Package>org.openecomp.sdnc.sli;version="${project.version}",*</Import-Package>
81                         <!--
82                                                 <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|jcl-over-slf4j|xml-apis|mysql-connector-java</Embed-Dependency>
83                                                 -->
84                                                 <Embed-Dependency>*;scope=compile;artifactId=commons-lang|commons-lang3</Embed-Dependency>
85
86                                                 <Embed-Transitive>true</Embed-Transitive>
87                                         </instructions>
88
89
90                                 </configuration>
91
92                         </plugin>
93                 </plugins>
94         </build>
95         <description>SLI Provider is the OSGi bundle that exposes the service logic interpreter as a service.</description>
96 </project>