blob: 775aadc7a06c744b5af37d1f4e284dfdc936ed91 [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)148c1532019-08-28 13:21:30 -040024 <version>1.4.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)148c1532019-08-28 13:21:30 -040029 <version>0.6.1-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)c74f6af2019-07-11 08:47:49 -040069 <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>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.powermock</groupId>
110 <artifactId>powermock-module-junit4</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.apache.sling</groupId>
115 <artifactId>org.apache.sling.testing.osgi-mock</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>junit</groupId>
120 <artifactId>junit</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>commons-collections</groupId>
125 <artifactId>commons-collections</artifactId>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500126 </dependency>
127 <dependency>
128 <groupId>org.osgi</groupId>
129 <artifactId>org.osgi.core</artifactId>
130 <scope>provided</scope>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500131 </dependency>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500132 </dependencies>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500133
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500134 <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>
Timoney, Dan (dt5972)a2f171d2019-01-04 09:29:30 -0500146 <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>
Timoney, Dan (dt5972)4a46ddd2019-01-08 14:20:28 -0500165</project>