blob: b60b5356e54cd676333b73fbb09a654353bd7c1e [file] [log] [blame]
Dan Timoney7dbb6442017-07-18 20:35:53 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 openECOMP : SDN-C
5 ================================================================================
Dan Timoney0c7f2222017-08-15 10:18:56 -04006 Copyright (C) 2017 AT&T Intellectual Property. All rights
7 reserved.
Dan Timoney7dbb6442017-07-18 20:35:53 -04008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
23<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 -070024 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.ccsdk.sli.plugins</groupId>
27 <artifactId>restapi-call-node</artifactId>
28 <version>6.0.0-SNAPSHOT</version>
29 </parent>
30 <artifactId>restapi-call-node-provider</artifactId>
31 <packaging>bundle</packaging>
32 <name>RESTAPI Call Node - Provider</name>
33 <url>http://maven.apache.org</url>
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 </properties>
37 <dependencies>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.springframework</groupId>
45 <artifactId>spring-test</artifactId>
46 <version>3.1.4.RELEASE</version>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.onap.ccsdk.sli</groupId>
51 <artifactId>sli-common</artifactId>
52 <scope>compile</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onap.ccsdk.sli</groupId>
56 <artifactId>sli-provider</artifactId>
57 <scope>compile</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.slf4j</groupId>
61 <artifactId>slf4j-api</artifactId>
62 <version>${slf4j.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.slf4j</groupId>
66 <artifactId>jcl-over-slf4j</artifactId>
67 <version>${slf4j.version}</version>
68 </dependency>
69 <dependency>
70 <groupId>org.springframework</groupId>
71 <artifactId>spring-beans</artifactId>
72 <version>3.1.4.RELEASE</version>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework</groupId>
76 <artifactId>spring-context</artifactId>
77 <version>3.1.4.RELEASE</version>
78 </dependency>
79 <dependency>
80 <groupId>xerces</groupId>
81 <artifactId>xerces</artifactId>
82 <version>2.4.0</version>
83 <scope>provided</scope>
84 </dependency>
85 <dependency>
86 <groupId>com.sun.jersey</groupId>
87 <artifactId>jersey-client</artifactId>
88 <version>1.17</version>
89 </dependency>
90 <dependency>
91 <groupId>commons-codec</groupId>
92 <artifactId>commons-codec</artifactId>
93 </dependency>
94 </dependencies>
Dan Timoney7dbb6442017-07-18 20:35:53 -040095
Marcus G K Williams90428802017-08-23 11:47:08 -070096 <build>
97 <plugins>
98 <plugin>
99 <groupId>com.brocade.developer</groupId>
100 <artifactId>providermodule-plugin</artifactId>
101 <configuration>
102 <packageId>org.onap.ccsdk.sli.plugins</packageId>
103 <appName>restapi-call-node</appName>
104 </configuration>
105 <executions>
106 <execution>
107 <phase>process-sources</phase>
108 <goals>
109 <goal>process</goal>
110 </goals>
111 </execution>
112 </executions>
113 </plugin>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400114
115
Marcus G K Williams90428802017-08-23 11:47:08 -0700116 <plugin>
117 <groupId>org.apache.felix</groupId>
118 <artifactId>maven-bundle-plugin</artifactId>
119 <extensions>true</extensions>
120 <configuration>
121 <instructions>
122 <Bundle-SymbolicName>org.onap.ccsdk.sli.plugins.restapicall</Bundle-SymbolicName>
123 <Export-Package>org.onap.ccsdk.sli.plugins.restapicall</Export-Package>
124 <Import-Package>*</Import-Package>
125 </instructions>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400126
Marcus G K Williams90428802017-08-23 11:47:08 -0700127 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400128
Marcus G K Williams90428802017-08-23 11:47:08 -0700129 </configuration>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400130
Marcus G K Williams90428802017-08-23 11:47:08 -0700131 </plugin>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400132
133
Marcus G K Williams90428802017-08-23 11:47:08 -0700134 </plugins>
135 <pluginManagement>
136 <plugins>
137 <!--This plugin's configuration is used to store Eclipse m2e settings
138 only. It has no influence on the Maven build itself. -->
139 <plugin>
140 <groupId>org.eclipse.m2e</groupId>
141 <artifactId>lifecycle-mapping</artifactId>
142 <version>1.0.0</version>
143 <configuration>
144 <lifecycleMappingMetadata>
145 <pluginExecutions>
146 <pluginExecution>
147 <pluginExecutionFilter>
148 <groupId>
149 com.brocade.developer
150 </groupId>
151 <artifactId>
152 providermodule-plugin
153 </artifactId>
154 <versionRange>
155 [1.2.0.100-SNAPSHOT,)
156 </versionRange>
157 <goals>
158 <goal>process</goal>
159 </goals>
160 </pluginExecutionFilter>
161 <action>
162 <ignore />
163 </action>
164 </pluginExecution>
165 </pluginExecutions>
166 </lifecycleMappingMetadata>
167 </configuration>
168 </plugin>
169 </plugins>
170 </pluginManagement>
171 </build>
Dan Timoney7dbb6442017-07-18 20:35:53 -0400172</project>