Changes for Fluorine
[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.2.1-SNAPSHOT</version>
25         <relativePath/>
26     </parent>
27
28     <groupId>org.onap.ccsdk.features</groupId>
29     <version>0.4.1-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             <version>${jackson.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>com.fasterxml.jackson.core</groupId>
43             <artifactId>jackson-databind</artifactId>
44             <version>${jackson.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>com.fasterxml.jackson.core</groupId>
48             <artifactId>jackson-annotations</artifactId>
49             <version>${jackson.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>com.fasterxml.jackson.module</groupId>
53             <artifactId>jackson-module-jsonSchema</artifactId>
54             <version>${jackson.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>com.jayway.jsonpath</groupId>
58             <artifactId>json-path</artifactId>
59             <version>2.3.0</version>
60         </dependency>
61         <dependency>
62             <groupId>org.onap.ccsdk.features</groupId>
63             <artifactId>blueprints-rest-adaptor-provider</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.onap.ccsdk.features</groupId>
68             <artifactId>blueprints-data-adaptor-provider</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.powermock</groupId>
73             <artifactId>powermock-api-mockito</artifactId>
74             <version>1.6.6</version>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.powermock</groupId>
79             <artifactId>powermock-module-junit4</artifactId>
80             <version>1.6.6</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.apache.sling</groupId>
85             <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
86             <version>2.3.2</version>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>junit</groupId>
91             <artifactId>junit</artifactId>
92             <version>${junit.version}</version>
93             <scope>test</scope>
94         </dependency>
95         <dependency>
96             <groupId>commons-collections</groupId>
97             <artifactId>commons-collections</artifactId>
98             <version>3.2.2</version>
99         </dependency>
100         <dependency>
101                         <groupId>org.osgi</groupId>
102                         <artifactId>org.osgi.core</artifactId>
103                         <scope>provided</scope>
104                 </dependency>
105     </dependencies>
106
107     <build>
108         <plugins>
109             <plugin>
110                 <groupId>org.apache.maven.plugins</groupId>
111                 <artifactId>maven-javadoc-plugin</artifactId>
112                 <configuration>
113                     <additionalparam>-Xdoclint:none</additionalparam>
114                 </configuration>
115             </plugin>
116             <plugin>
117                 <groupId>org.apache.felix</groupId>
118                 <artifactId>maven-bundle-plugin</artifactId>
119                 <version>${maven.bundle.version}</version>
120                 <extensions>true</extensions>
121                 <configuration>
122                     <instructions>
123                         <Bundle-Name>${project.artifactId}</Bundle-Name>
124                         <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
125                         <Export-Package>org.onap.ccsdk.features.model,
126                             org.onap.ccsdk.features.model.data,
127                             org.onap.ccsdk.features.model.data.api,
128                             org.onap.ccsdk.features.model.data.dict,
129                             org.onap.ccsdk.features.model.domain,
130                             org.onap.ccsdk.features.model.service,
131                             org.onap.ccsdk.features.model.utils,
132                             org.onap.ccsdk.features.model.validator
133                         </Export-Package>
134                     </instructions>
135                 </configuration>
136             </plugin>
137         </plugins>
138     </build>
139 </project>