3 Copyright (c) 2017 Wind River Systems, Inc.
4 Copyright (c) 2017-2018 VMware, Inc.
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 http://www.apache.org/licenses/LICENSE-2.0
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 <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">
18 <groupId>org.onap.multicloud.framework</groupId>
19 <artifactId>multicloud-framework</artifactId>
20 <version>1.8.3-SNAPSHOT</version>
22 <modelVersion>4.0.0</modelVersion>
23 <groupId>org.onap.multicloud.framework</groupId>
24 <artifactId>multicloud-framework-artifactbroker</artifactId>
25 <version>1.9.3-SNAPSHOT</version>
26 <packaging>pom</packaging>
27 <name>multicloud-framework-artifactbroker</name>
28 <description>artifact broker</description>
30 <encoding>UTF-8</encoding>
31 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
33 <nexusproxy>https://nexus.onap.org</nexusproxy>
34 <policy.common.version>1.5.0</policy.common.version>
35 <logback.version>1.5.18</logback.version>
36 <jackson.version>2.18.3</jackson.version>
37 <gson.version>2.8.9</gson.version>
38 <sonar.language>java</sonar.language>
39 <sonar.coverage.jacoco.xmlReportPaths>
40 ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
41 </sonar.coverage.jacoco.xmlReportPaths>
42 <sdc-dist-client-version>2.0.0</sdc-dist-client-version>
45 <module>model</module>
47 <module>reception</module>
48 <module>forwarding</module>
49 <module>plugins</module>
50 <module>packages</module>
52 <dependencyManagement>
55 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
56 <artifactId>sdc-distribution-client</artifactId>
57 <version>${sdc-dist-client-version}</version>
60 <groupId>org.slf4j</groupId>
61 <artifactId>slf4j-log4j12</artifactId>
66 <groupId>org.glassfish.jersey.media</groupId>
67 <artifactId>jersey-media-json-jackson</artifactId>
68 <version>2.25.1</version>
71 </dependencyManagement>
74 <groupId>junit</groupId>
75 <artifactId>junit</artifactId>
76 <version>4.12</version>
80 <groupId>org.apache.logging.log4j</groupId>
81 <artifactId>log4j-api</artifactId>
82 <version>2.16.0</version>
85 <groupId>ch.qos.logback</groupId>
86 <artifactId>logback-core</artifactId>
87 <version>${logback.version}</version>
90 <groupId>ch.qos.logback</groupId>
91 <artifactId>logback-classic</artifactId>
92 <version>${logback.version}</version>
95 <groupId>org.onap.policy.common</groupId>
96 <artifactId>common-parameters</artifactId>
97 <version>${policy.common.version}</version>
100 <groupId>org.onap.policy.common</groupId>
101 <artifactId>ONAP-Logging</artifactId>
102 <version>${policy.common.version}</version>
105 <groupId>org.mockito</groupId>
106 <artifactId>mockito-core</artifactId>
109 <groupId>org.powermock</groupId>
110 <artifactId>powermock-module-junit4</artifactId>
115 <groupId>org.onap.policy.common</groupId>
116 <artifactId>capabilities</artifactId>
117 <version>${policy.common.version}</version>
120 <groupId>com.fasterxml.jackson.core</groupId>
121 <artifactId>jackson-databind</artifactId>
122 <version>${jackson.version}</version>
125 <groupId>com.fasterxml.jackson.core</groupId>
126 <artifactId>jackson-core</artifactId>
127 <version>${jackson.version}</version>
130 <groupId>org.onap.policy.common</groupId>
131 <artifactId>policy-endpoints</artifactId>
132 <version>${policy.common.version}</version>
135 <groupId>com.fasterxml.jackson.core</groupId>
136 <artifactId>jackson-databind</artifactId>
139 <groupId>org.json</groupId>
140 <artifactId>json</artifactId>
145 <groupId>org.onap.policy.common</groupId>
146 <artifactId>utils</artifactId>
147 <version>${policy.common.version}</version>
150 <groupId>commons-cli</groupId>
151 <artifactId>commons-cli</artifactId>
152 <version>1.4</version>
155 <groupId>com.google.code.gson</groupId>
156 <artifactId>gson</artifactId>
157 <version>${gson.version}</version>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-compiler-plugin</artifactId>
165 <version>3.8.0</version>
167 <release>11</release>
171 <groupId>org.apache.maven.plugins</groupId>
172 <artifactId>maven-enforcer-plugin</artifactId>
175 <id>enforce-versions</id>
181 <requireMavenVersion>
182 <version>3.0.5</version>
183 </requireMavenVersion>
185 <version>11</version>
186 </requireJavaVersion>
193 <groupId>org.jacoco</groupId>
194 <artifactId>jacoco-maven-plugin</artifactId>
197 <id>pre-unit-test</id>
199 <goal>prepare-agent</goal>
202 <destFile>${sonar.coverage.jacoco.xmlReportPaths}</destFile>
203 <append>true</append>
207 <id>post-unit-test</id>
213 <dataFile>${sonar.coverage.jacoco.xmlReportPaths}</dataFile>
219 <artifactId>maven-checkstyle-plugin</artifactId>
222 <id>onap-java-style</id>
226 <phase>process-sources</phase>
228 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
229 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
230 <includeResources>true</includeResources>
231 <includeTestSourceDirectory>true</includeTestSourceDirectory>
232 <includeTestResources>true</includeTestResources>
235 <consoleOutput>true</consoleOutput>
236 <failOnViolation>true</failOnViolation>
237 <violationSeverity>error</violationSeverity>
243 <groupId>org.onap.oparent</groupId>
244 <artifactId>checkstyle</artifactId>
245 <version>1.2.0</version>
246 <scope>compile</scope>
251 <groupId>org.codehaus.mojo</groupId>
252 <artifactId>versions-maven-plugin</artifactId>
253 <version>2.18.0</version>
255 <generateBackupPoms>false</generateBackupPoms>
262 <groupId>org.jacoco</groupId>
263 <artifactId>jacoco-maven-plugin</artifactId>
264 <version>${jacoco.version}</version>
267 <exclude>**/gen/**</exclude>
268 <exclude>**/generated-sources/**</exclude>
269 <exclude>**/yang-gen/**</exclude>
270 <exclude>**/pax/**</exclude>
275 <id>pre-unit-test</id>
277 <goal>prepare-agent</goal>
280 <destFile>${sonar.coverage.jacoco.xmlReportPaths}</destFile>
284 <id>post-unit-test</id>
290 <dataFile>${sonar.coverage.jacoco.xmlReportPaths}</dataFile>