blob: 2d991c4b6a7a8eb11a562b9454c3b58f59b8f720 [file] [log] [blame]
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -05001<?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">
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050019 <modelVersion>4.0.0</modelVersion>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050020
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050021 <parent>
22 <groupId>org.onap.ccsdk.parent</groupId>
23 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)17552ad2019-07-17 11:05:55 -040024 <version>1.3.1-SNAPSHOT</version>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050025 <relativePath/>
26 </parent>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050027
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050028 <groupId>org.onap.ccsdk.features</groupId>
Timoney, Dan (dt5972)d761bb62019-04-30 14:46:09 -040029 <version>0.5.0-SNAPSHOT</version>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050030 <artifactId>blueprints-model-provider</artifactId>
31 <packaging>bundle</packaging>
32 <name>Blueprints Model - Provider</name>
33 <url>http://maven.apache.org</url>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050034
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050035 <dependencies>
36 <dependency>
37 <groupId>com.fasterxml.jackson.core</groupId>
38 <artifactId>jackson-core</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050039 </dependency>
40 <dependency>
41 <groupId>com.fasterxml.jackson.core</groupId>
42 <artifactId>jackson-databind</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050043 </dependency>
44 <dependency>
45 <groupId>com.fasterxml.jackson.core</groupId>
46 <artifactId>jackson-annotations</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050047 </dependency>
48 <dependency>
49 <groupId>com.fasterxml.jackson.module</groupId>
50 <artifactId>jackson-module-jsonSchema</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050051 </dependency>
52 <dependency>
53 <groupId>com.jayway.jsonpath</groupId>
54 <artifactId>json-path</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050055 </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>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050069 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.powermock</groupId>
73 <artifactId>powermock-module-junit4</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050074 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.sling</groupId>
78 <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050079 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050084 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>commons-collections</groupId>
88 <artifactId>commons-collections</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050089 </dependency>
90 <dependency>
91 <groupId>org.osgi</groupId>
92 <artifactId>org.osgi.core</artifactId>
93 <scope>provided</scope>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050094 </dependency>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050095 </dependencies>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -050096
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -050097 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-javadoc-plugin</artifactId>
102 <configuration>
103 <additionalparam>-Xdoclint:none</additionalparam>
104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-bundle-plugin</artifactId>
109 <version>${maven.bundle.version}</version>
110 <extensions>true</extensions>
111 <configuration>
112 <instructions>
113 <Bundle-Name>${project.artifactId}</Bundle-Name>
114 <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
115 <Export-Package>org.onap.ccsdk.features.model,
116 org.onap.ccsdk.features.model.data,
117 org.onap.ccsdk.features.model.data.api,
118 org.onap.ccsdk.features.model.data.dict,
119 org.onap.ccsdk.features.model.domain,
120 org.onap.ccsdk.features.model.service,
121 org.onap.ccsdk.features.model.utils,
122 org.onap.ccsdk.features.model.validator
123 </Export-Package>
124 </instructions>
125 </configuration>
126 </plugin>
127 </plugins>
128 </build>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500129</project>