Bump minor version
[sdnc/northbound.git] / vnftools / provider / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.onap.sdnc.northbound</groupId>
7         <artifactId>vnftools</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>vnftools-provider</artifactId>
11     <packaging>bundle</packaging>
12     <name>VNF Tools Plugin - Provider</name>
13     <url>http://maven.apache.org</url>
14     <properties>
15         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16     </properties>
17     <dependencies>
18         <dependency>
19             <groupId>junit</groupId>
20             <artifactId>junit</artifactId>
21             <version>${junit.version}</version>
22             <scope>test</scope>
23         </dependency>
24         <dependency>
25             <groupId>org.mockito</groupId>
26             <artifactId>mockito-core</artifactId>
27             <version>${mockito.version}</version>
28             <scope>test</scope>
29         </dependency>
30         <dependency>
31             <groupId>org.onap.ccsdk.sli.core</groupId>
32             <artifactId>sli-common</artifactId>
33             <version>${sdnctl.sli.version}</version>
34             <scope>compile</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.onap.ccsdk.sli.core</groupId>
38             <artifactId>sli-provider</artifactId>
39             <version>${sdnctl.sli.version}</version>
40             <scope>compile</scope>
41         </dependency>
42         <dependency>
43             <groupId>equinoxSDK381</groupId>
44             <artifactId>org.eclipse.osgi</artifactId>
45             <version>${equinox.osgi.version}</version>
46         </dependency>
47         <dependency>
48             <groupId>org.slf4j</groupId>
49             <artifactId>slf4j-api</artifactId>
50             <version>${slf4j.version}</version>
51         </dependency>
52         <dependency>
53             <groupId>org.slf4j</groupId>
54             <artifactId>jcl-over-slf4j</artifactId>
55             <version>${slf4j.version}</version>
56         </dependency>
57
58         <dependency>
59             <groupId>org.onap.ccsdk.sli.core</groupId>
60             <artifactId>sliPluginUtils-provider</artifactId>
61             <version>${sdnctl.slipluginutils.version}</version>
62             <type>jar</type>
63             <scope>compile</scope>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69
70
71             <plugin>
72                 <groupId>org.apache.felix</groupId>
73                 <artifactId>maven-bundle-plugin</artifactId>
74                 <version>${bundle.plugin.version}</version>
75                 <extensions>true</extensions>
76                 <configuration>
77                     <instructions>
78                         <Bundle-SymbolicName>org.onap.sdnc.vnftools</Bundle-SymbolicName>
79                         <Export-Package>org.onap.sdnc.vnftools.*</Export-Package>
80                         <Import-Package>org.onap.sdnc.*,org.onap.ccsdk.*,org.osgi.framework.*,org.slf4j.*,java.net.*,org.apache.commons.*</Import-Package>
81                         <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|mysql-connector-java|slf4j-api|jcl-over-slf4j|xml-apis|InetAddress|commons-lang3</Embed-Dependency>
82                         <Embed-Transitive>true</Embed-Transitive>
83                     </instructions>
84                 </configuration>
85             </plugin>
86         </plugins>
87
88     </build>
89 </project>