Use 1.5.0 parent pom
[ccsdk/features.git] / blueprints-processor / plugin / model-provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   Copyright © 2017-2018 AT&T Intellectual Property.
4   Modifications Copyright © 2018 IBM.
5   
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9   
10       http://www.apache.org/licenses/LICENSE-2.0
11   
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17 -->
18 <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">
19     <modelVersion>4.0.0</modelVersion>
20
21     <parent>
22         <groupId>org.onap.ccsdk.parent</groupId>
23         <artifactId>binding-parent</artifactId>
24         <version>1.5.0</version>
25         <relativePath/>
26     </parent>
27
28     <groupId>org.onap.ccsdk.features</groupId>
29     <version>0.7.0-SNAPSHOT</version>
30     <artifactId>blueprints-model-provider</artifactId>
31     <packaging>bundle</packaging>
32     <name>Blueprints Model - Provider</name>
33     <url>http://maven.apache.org</url>
34
35     <dependencies>
36         <dependency>
37             <groupId>com.fasterxml.jackson.core</groupId>
38             <artifactId>jackson-core</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>com.fasterxml.jackson.core</groupId>
42             <artifactId>jackson-databind</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>com.fasterxml.jackson.core</groupId>
46             <artifactId>jackson-annotations</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>com.fasterxml.jackson.module</groupId>
50             <artifactId>jackson-module-jsonSchema</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>com.jayway.jsonpath</groupId>
54             <artifactId>json-path</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>org.onap.ccsdk.features</groupId>
58             <artifactId>blueprints-rest-adaptor-provider</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.onap.ccsdk.features</groupId>
63             <artifactId>blueprints-data-adaptor-provider</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.powermock</groupId>
68             <artifactId>powermock-api-mockito</artifactId>
69             <version>1.6.4</version>
70             <scope>test</scope>
71         </dependency>
72         <dependency>
73             <groupId>org.javassist</groupId>
74             <artifactId>javassist</artifactId>
75             <version>3.21.0-GA</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81             <version>1.10.19</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-module-junit4</artifactId>
87             <version>1.6.4</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.powermock</groupId>
92             <artifactId>powermock-api-support</artifactId>
93             <version>1.6.4</version>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.powermock</groupId>
98             <artifactId>powermock-reflect</artifactId>
99             <version>1.6.4</version>
100             <scope>test</scope>
101         </dependency>
102         <dependency>
103             <groupId>org.powermock</groupId>
104             <artifactId>powermock-core</artifactId>
105             <version>1.6.4</version>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.powermock</groupId>
110             <artifactId>powermock-module-junit4</artifactId>
111             <scope>test</scope>
112         </dependency>
113         <dependency>
114             <groupId>org.apache.sling</groupId>
115             <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>junit</groupId>
120             <artifactId>junit</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>commons-collections</groupId>
125             <artifactId>commons-collections</artifactId>
126         </dependency>
127         <dependency>
128                         <groupId>org.osgi</groupId>
129                         <artifactId>org.osgi.core</artifactId>
130                         <scope>provided</scope>
131                 </dependency>
132     </dependencies>
133
134     <build>
135         <plugins>
136             <plugin>
137                 <groupId>org.apache.maven.plugins</groupId>
138                 <artifactId>maven-javadoc-plugin</artifactId>
139                 <configuration>
140                     <additionalparam>-Xdoclint:none</additionalparam>
141                 </configuration>
142             </plugin>
143             <plugin>
144                 <groupId>org.apache.felix</groupId>
145                 <artifactId>maven-bundle-plugin</artifactId>
146                 <extensions>true</extensions>
147                 <configuration>
148                     <instructions>
149                         <Bundle-Name>${project.artifactId}</Bundle-Name>
150                         <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
151                         <Export-Package>org.onap.ccsdk.features.model,
152                             org.onap.ccsdk.features.model.data,
153                             org.onap.ccsdk.features.model.data.api,
154                             org.onap.ccsdk.features.model.data.dict,
155                             org.onap.ccsdk.features.model.domain,
156                             org.onap.ccsdk.features.model.service,
157                             org.onap.ccsdk.features.model.utils,
158                             org.onap.ccsdk.features.model.validator
159                         </Export-Package>
160                     </instructions>
161                 </configuration>
162             </plugin>
163         </plugins>
164     </build>
165 </project>