0d23912fdc50521dccfeee79dc1557c50a15670e
[ccsdk/sli/plugins.git] / restapi-call-node / 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
5     <parent>
6         <groupId>org.onap.ccsdk.parent</groupId>
7         <artifactId>binding-parent</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.ccsdk.sli.plugins</groupId>
12     <artifactId>restapi-call-node-provider</artifactId>
13     <version>0.5.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <name>ccsdk-sli-plugins :: restapi-call-node :: ${project.artifactId}</name>
17
18     <properties>
19         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20     </properties>
21
22     <dependencyManagement>
23         <dependencies>
24                 <dependency>
25                         <groupId>org.onap.ccsdk.sli.core</groupId>
26                         <artifactId>sli-core-artifacts</artifactId>
27                         <version>${ccsdk.sli.core.version}</version>
28                         <type>pom</type>
29                         <scope>import</scope>
30                 </dependency>
31         </dependencies>
32     </dependencyManagement>
33
34     <dependencies>
35         <dependency>
36             <groupId>javax.ws.rs</groupId>
37             <artifactId>javax.ws.rs-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.onap.ccsdk.sli.core</groupId>
41             <artifactId>sli-common</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.slf4j</groupId>
45             <artifactId>slf4j-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.glassfish.jersey.bundles.repackaged</groupId>
49             <artifactId>jersey-guava</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.glassfish.jersey.security</groupId>
53             <artifactId>oauth1-signature</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.glassfish.jersey.security</groupId>
57             <artifactId>oauth1-client</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.codehaus.jettison</groupId>
61             <artifactId>jettison</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.glassfish.jersey.core</groupId>
65             <artifactId>jersey-client</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>org.glassfish.jersey.media</groupId>
69             <artifactId>jersey-media-multipart</artifactId>
70         </dependency>
71
72         <!-- For test -->
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.glassfish.jersey.containers</groupId>
80             <artifactId>jersey-container-servlet</artifactId>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.glassfish.jersey.containers</groupId>
85             <artifactId>jersey-container-grizzly2-http</artifactId>
86             <scope>test</scope>
87         </dependency>
88     </dependencies>
89
90 </project>