blob: 0d6b3fb8608be07532205dd618a5fe057cd831d7 [file] [log] [blame]
Dan Timoney7dbb6442017-07-18 20:35:53 -04001<?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">
Marcus G K Williams90428802017-08-23 11:47:08 -07003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.ccsdk.sli.plugins</groupId>
6 <artifactId>restapi-call-node</artifactId>
Jessica Wagantall17a92cb2017-11-17 16:59:31 -08007 <version>0.2.0-SNAPSHOT</version>
Marcus G K Williams90428802017-08-23 11:47:08 -07008 </parent>
9 <groupId>org.onap.ccsdk.sli.plugins</groupId>
10 <artifactId>restapi-call-node-provider</artifactId>
Jessica Wagantall17a92cb2017-11-17 16:59:31 -080011 <version>0.2.0-SNAPSHOT</version>
Marcus G K Williams90428802017-08-23 11:47:08 -070012 <packaging>bundle</packaging>
13 <name>RESTAPI Call Node - 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 <dependency>
20 <groupId>junit</groupId>
21 <artifactId>junit</artifactId>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
25 <groupId>org.springframework</groupId>
26 <artifactId>spring-test</artifactId>
27 <version>${spring.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>org.slf4j</groupId>
44 <artifactId>slf4j-api</artifactId>
45 <version>${slf4j.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.slf4j</groupId>
49 <artifactId>jcl-over-slf4j</artifactId>
50 <version>${slf4j.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.springframework</groupId>
54 <artifactId>spring-beans</artifactId>
55 <version>${spring.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.springframework</groupId>
59 <artifactId>spring-context</artifactId>
60 <version>${spring.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>com.sun.jersey</groupId>
64 <artifactId>jersey-client</artifactId>
65 <version>${jersey.version}</version>
66 <scope>provided</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.codehaus.jettison</groupId>
70 <artifactId>jettison</artifactId>
71 <version>${jettison.version}</version>
72 <scope>provided</scope>
73 </dependency>
74 </dependencies>
Dan Timoney7dbb6442017-07-18 20:35:53 -040075
Marcus G K Williams90428802017-08-23 11:47:08 -070076 <build>
77 <plugins>
Dan Timoney7dbb6442017-07-18 20:35:53 -040078
79
80
Marcus G K Williams90428802017-08-23 11:47:08 -070081 <plugin>
82 <groupId>org.apache.felix</groupId>
83 <artifactId>maven-bundle-plugin</artifactId>
84 <extensions>true</extensions>
85 <configuration>
86 <instructions>
87 <Bundle-SymbolicName>org.onap.ccsdk.sli.restapicall</Bundle-SymbolicName>
88 <Export-Package>org.onap.ccsdk.sli.plugins.restapicall</Export-Package>
89 <Import-Package>*</Import-Package>
90 </instructions>
Dan Timoney7dbb6442017-07-18 20:35:53 -040091
92
Marcus G K Williams90428802017-08-23 11:47:08 -070093 </configuration>
Dan Timoney7dbb6442017-07-18 20:35:53 -040094
Marcus G K Williams90428802017-08-23 11:47:08 -070095 </plugin>
Dan Timoney7dbb6442017-07-18 20:35:53 -040096
97
Marcus G K Williams90428802017-08-23 11:47:08 -070098 </plugins>
Dan Timoney7dbb6442017-07-18 20:35:53 -040099
Marcus G K Williams90428802017-08-23 11:47:08 -0700100 </build>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400101</project>