blob: 35264730d9ce0413f8d05998d0ac18800e5b564e [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>
27 <version>1.1.0-SNAPSHOT</version>
28 <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>
Timoney, Dan (dt5972)b1dd3be2018-09-12 13:46:01 -040040 <groupId>org.onap.ccsdk.features</groupId>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040041 <artifactId>blueprints-rest-adaptor-provider</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
Timoney, Dan (dt5972)b1dd3be2018-09-12 13:46:01 -040045 <groupId>org.onap.ccsdk.features</groupId>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040046 <artifactId>blueprints-data-adaptor-provider</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.powermock</groupId>
51 <artifactId>powermock-api-mockito</artifactId>
52 <version>1.6.6</version>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.powermock</groupId>
57 <artifactId>powermock-module-junit4</artifactId>
58 <version>1.6.6</version>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.sling</groupId>
63 <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
64 <version>2.3.2</version>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>${junit.version}</version>
71 <scope>test</scope>
72 </dependency>
73 </dependencies>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -040074
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040075 <build>
76 <plugins>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-javadoc-plugin</artifactId>
80 <configuration>
81 <additionalparam>-Xdoclint:none</additionalparam>
82 </configuration>
83 </plugin>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-bundle-plugin</artifactId>
87 <version>${maven.bundle.version}</version>
88 <extensions>true</extensions>
89 <configuration>
90 <instructions>
91 <Bundle-SymbolicName>org.onap.ccsdk.config.model</Bundle-SymbolicName>
92 <Export-Package>org.onap.ccsdk.config.model,
93 org.onap.ccsdk.config.model.data,
94 org.onap.ccsdk.config.model.data.api,
Alexis de Talhouët78fc81b2018-09-11 14:38:13 -040095 org.onap.ccsdk.config.model.data.dict,
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -040096 org.onap.ccsdk.config.model.domain,
97 org.onap.ccsdk.config.model.service,
98 org.onap.ccsdk.config.model.utils,
99 org.onap.ccsdk.config.model.validator
100 </Export-Package>
Alexis de Talhouëtea45fbf2018-09-11 11:13:56 -0400101 </instructions>
102 </configuration>
103 </plugin>
104 </plugins>
105 </build>
Singal, Kapil (ks220y)f086bce2018-09-04 23:41:26 -0400106</project>