Merge "Implement framework to process REST notifications"
[ccsdk/sli/plugins.git] / fabric-discovery-plugin / 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" 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.onap.ccsdk.sli.plugins</groupId>
6         <artifactId>fabric-discovery-plugin</artifactId>
7         <version>0.1.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.onap.ccsdk.sli.plugins</groupId>
10     <artifactId>fabric-discovery-plugin-provider</artifactId>
11     <version>0.1.0-SNAPSHOT</version>
12     <packaging>bundle</packaging>
13     <name>Fabric Discovery Plugin - Provider</name>
14     <url>http://maven.apache.org</url>
15     <properties>
16         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17     </properties>
18     <dependencies>
19         <!-- https://mvnrepository.com/artifact/io.netty/netty -->
20         <dependency>
21             <groupId>io.netty</groupId>
22             <artifactId>netty</artifactId>
23             <version>3.10.6.Final</version>
24         </dependency>
25         <!-- https://mvnrepository.com/artifact/io.netty/netty-buffer -->
26         <dependency>
27             <groupId>io.netty</groupId>
28             <artifactId>netty-buffer</artifactId>
29             <version>4.0.26.Final</version>
30         </dependency>
31         <!-- https://mvnrepository.com/artifact/io.netty/netty-transport -->
32         <dependency>
33             <groupId>io.netty</groupId>
34             <artifactId>netty-transport</artifactId>
35             <version>4.0.4.Final</version>
36         </dependency>
37         <!-- https://mvnrepository.com/artifact/io.netty/netty-codec-http -->
38         <dependency>
39             <groupId>io.netty</groupId>
40             <artifactId>netty-codec-http</artifactId>
41             <version>4.0.15.Final</version>
42         </dependency>
43         <dependency>
44             <groupId>junit</groupId>
45             <artifactId>junit</artifactId>
46             <scope>test</scope>
47         </dependency>
48         <dependency>
49             <groupId>org.springframework</groupId>
50             <artifactId>spring-test</artifactId>
51             <version>${spring.version}</version>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.onap.ccsdk.sli.core</groupId>
56             <artifactId>sli-common</artifactId>
57             <version>${sdnctl.sli.version}</version>
58             <scope>compile</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.onap.ccsdk.sli.core</groupId>
62             <artifactId>sli-provider</artifactId>
63             <version>${sdnctl.sli.version}</version>
64             <scope>compile</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.slf4j</groupId>
68             <artifactId>slf4j-api</artifactId>
69             <version>${slf4j.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.slf4j</groupId>
73             <artifactId>jcl-over-slf4j</artifactId>
74             <version>${slf4j.version}</version>
75         </dependency>
76         <dependency>
77             <groupId>org.springframework</groupId>
78             <artifactId>spring-beans</artifactId>
79             <version>${spring.version}</version>
80         </dependency>
81         <dependency>
82             <groupId>org.springframework</groupId>
83             <artifactId>spring-context</artifactId>
84             <version>${spring.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>com.sun.jersey</groupId>
88             <artifactId>jersey-client</artifactId>
89             <version>${jersey.version}</version>
90             <scope>provided</scope>
91         </dependency>
92         <dependency>
93             <groupId>org.codehaus.jettison</groupId>
94             <artifactId>jettison</artifactId>
95             <version>${jettison.version}</version>
96             <scope>provided</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.onap.ccsdk.sli.core</groupId>
100             <artifactId>sli-common</artifactId>
101             <version>${sdnctl.sli.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.onap.ccsdk.sli.core</groupId>
105             <artifactId>sli-provider</artifactId>
106             <version>${sdnctl.sli.version}</version>
107         </dependency>
108     </dependencies>
109
110     <build>
111         <plugins>
112             <plugin>
113                 <groupId>org.apache.felix</groupId>
114                 <artifactId>maven-bundle-plugin</artifactId>
115                 <extensions>true</extensions>
116                 <configuration>
117                     <instructions>
118                         <Bundle-SymbolicName>org.onap.ccsdk.sli.plugins.fabricdiscovery</Bundle-SymbolicName>
119                         <Export-Package>org.onap.ccsdk.sli.plugins.fabricdiscovery</Export-Package>
120                         <Import-Package>*</Import-Package>
121                     </instructions>
122                 </configuration>
123             </plugin>
124         </plugins>
125     </build>
126 </project>