blob: d52096e65bfcf47e9a8c9d512c10b8a6df9b4065 [file] [log] [blame]
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -04001<?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
19<project xmlns="http://maven.apache.org/POM/4.0.0"
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040020 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -040023
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040024 <parent>
25 <groupId>org.onap.ccsdk.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)36691292018-09-26 12:59:43 -040027 <version>1.1.0</version>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040028 <relativePath/>
29 </parent>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -040030
Timoney, Dan (dt5972)b1dd3be2018-09-12 13:46:01 -040031 <groupId>org.onap.ccsdk.features</groupId>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040032 <version>0.3.0-SNAPSHOT</version>
33 <artifactId>blueprints-model-provider</artifactId>
34 <packaging>bundle</packaging>
35 <name>Blueprints Model - Provider</name>
36 <url>http://maven.apache.org</url>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -040037
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040038 <dependencies>
39 <dependency>
Alexis de Talhouët37a244d2018-09-12 11:15:51 -040040 <groupId>com.fasterxml.jackson.core</groupId>
41 <artifactId>jackson-core</artifactId>
42 <version>${jackson.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>com.fasterxml.jackson.core</groupId>
46 <artifactId>jackson-databind</artifactId>
47 <version>${jackson.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>com.fasterxml.jackson.core</groupId>
51 <artifactId>jackson-annotations</artifactId>
52 <version>${jackson.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>com.fasterxml.jackson.module</groupId>
56 <artifactId>jackson-module-jsonSchema</artifactId>
57 <version>${jackson.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>com.jayway.jsonpath</groupId>
61 <artifactId>json-path</artifactId>
62 <version>2.3.0</version>
63 </dependency>
64 <dependency>
Timoney, Dan (dt5972)b1dd3be2018-09-12 13:46:01 -040065 <groupId>org.onap.ccsdk.features</groupId>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040066 <artifactId>blueprints-rest-adaptor-provider</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
Timoney, Dan (dt5972)b1dd3be2018-09-12 13:46:01 -040070 <groupId>org.onap.ccsdk.features</groupId>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040071 <artifactId>blueprints-data-adaptor-provider</artifactId>
72 <version>${project.version}</version>
73 </dependency>
74 <dependency>
75 <groupId>org.powermock</groupId>
76 <artifactId>powermock-api-mockito</artifactId>
77 <version>1.6.6</version>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.powermock</groupId>
82 <artifactId>powermock-module-junit4</artifactId>
83 <version>1.6.6</version>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.apache.sling</groupId>
88 <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
89 <version>2.3.2</version>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>junit</groupId>
94 <artifactId>junit</artifactId>
95 <version>${junit.version}</version>
96 <scope>test</scope>
97 </dependency>
Alexis de Talhouët37a244d2018-09-12 11:15:51 -040098 <dependency>
99 <groupId>commons-collections</groupId>
100 <artifactId>commons-collections</artifactId>
101 <version>3.2.2</version>
102 </dependency>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -0400103 </dependencies>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -0400104
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -0400105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-javadoc-plugin</artifactId>
110 <configuration>
111 <additionalparam>-Xdoclint:none</additionalparam>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.felix</groupId>
116 <artifactId>maven-bundle-plugin</artifactId>
117 <version>${maven.bundle.version}</version>
118 <extensions>true</extensions>
119 <configuration>
120 <instructions>
Alexis de Talhouët37a244d2018-09-12 11:15:51 -0400121 <Bundle-Name>${project.artifactId}</Bundle-Name>
122 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
Singal, Kapil (ks220y)280a0f62018-09-12 16:26:03 -0400123 <Export-Package>org.onap.ccsdk.features.model,
124 org.onap.ccsdk.features.model.data,
125 org.onap.ccsdk.features.model.data.api,
126 org.onap.ccsdk.features.model.data.dict,
127 org.onap.ccsdk.features.model.domain,
128 org.onap.ccsdk.features.model.service,
129 org.onap.ccsdk.features.model.utils,
130 org.onap.ccsdk.features.model.validator
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -0400131 </Export-Package>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -0400132 </instructions>
133 </configuration>
134 </plugin>
135 </plugins>
136 </build>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -0400137</project>