Release ccsdk/sli/plugins
[ccsdk/sli/plugins.git] / properties-node / provider / src / test / resources / test.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   openECOMP : SDN-C
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights
7                         reserved.
8   ================================================================================
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">
24     <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</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>com.sun.jersey.contribs.jersey-oauth</groupId>
92             <artifactId>oauth-signature</artifactId>
93             <version>1.17</version>
94         </dependency>
95         <dependency>
96             <groupId>com.sun.jersey.contribs.jersey-oauth</groupId>
97             <artifactId>oauth-client</artifactId>
98             <version>1.17</version>
99         </dependency>
100         <dependency>
101             <groupId>commons-codec</groupId>
102             <artifactId>commons-codec</artifactId>
103         </dependency>
104     </dependencies>
105
106     <build>
107         <plugins>
108             <plugin>
109                 <groupId>com.brocade.developer</groupId>
110                 <artifactId>providermodule-plugin</artifactId>
111                 <configuration>
112                     <packageId>org.onap.ccsdk.sli.plugins</packageId>
113                     <appName>restapi-call-node</appName>
114                 </configuration>
115                 <executions>
116                     <execution>
117                         <phase>process-sources</phase>
118                         <goals>
119                             <goal>process</goal>
120                         </goals>
121                     </execution>
122                 </executions>
123             </plugin>
124
125
126             <plugin>
127                 <groupId>org.apache.felix</groupId>
128                 <artifactId>maven-bundle-plugin</artifactId>
129                 <extensions>true</extensions>
130                 <configuration>
131                     <instructions>
132                         <Bundle-SymbolicName>org.onap.ccsdk.sli.plugins.restapicall</Bundle-SymbolicName>
133                         <Export-Package>org.onap.ccsdk.sli.plugins.restapicall</Export-Package>
134                         <Import-Package>*</Import-Package>
135                     </instructions>
136
137                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
138
139                 </configuration>
140
141             </plugin>
142
143
144         </plugins>
145         <pluginManagement>
146             <plugins>
147                 <!--This plugin's configuration is used to store Eclipse m2e settings
148                     only. It has no influence on the Maven build itself. -->
149                 <plugin>
150                     <groupId>org.eclipse.m2e</groupId>
151                     <artifactId>lifecycle-mapping</artifactId>
152                     <version>1.0.0</version>
153                     <configuration>
154                         <lifecycleMappingMetadata>
155                             <pluginExecutions>
156                                 <pluginExecution>
157                                     <pluginExecutionFilter>
158                                         <groupId>
159                                             com.brocade.developer
160                                         </groupId>
161                                         <artifactId>
162                                             providermodule-plugin
163                                         </artifactId>
164                                         <versionRange>
165                                             [1.2.0.100,)
166                                         </versionRange>
167                                         <goals>
168                                             <goal>process</goal>
169                                         </goals>
170                                     </pluginExecutionFilter>
171                                     <action>
172                                         <ignore />
173                                     </action>
174                                 </pluginExecution>
175                             </pluginExecutions>
176                         </lifecycleMappingMetadata>
177                     </configuration>
178                 </plugin>
179             </plugins>
180         </pluginManagement>
181     </build>
182 </project>