blob: db35e84759959a3864391afa9228f5b527dba104 [file] [log] [blame]
Pamela Dragosha965e2e2018-05-25 09:22:38 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy SDC Service Distribution
4 ================================================================================
Jim Hahnd1cd4a22021-03-12 11:55:30 -05005 Copyright (C) 2018, 2020-2021 AT&T Intellectual Property. All rights reserved.
ramvermab5f49342019-02-05 15:34:35 +00006 Copyright (C) 2019 Nordix Foundation.
Pamela Dragoshdffa54c2020-03-26 10:03:11 -04007 Modifications Copyright (C) 2020 AT&T Inc.
a.sreekumar922bb952021-03-09 18:23:38 +00008 Modifications Copyright (C) 2021 Bell Canada.
Pamela Dragosha965e2e2018-05-25 09:22:38 -04009 ================================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
Jim Hahn2d5be862020-05-29 14:51:25 -040013
Pamela Dragosha965e2e2018-05-25 09:22:38 -040014 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahn2d5be862020-05-29 14:51:25 -040015
Pamela Dragosha965e2e2018-05-25 09:22:38 -040016 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21 ============LICENSE_END=========================================================
22 -->
23
ramvermab5f49342019-02-05 15:34:35 +000024<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
adheli.tavares08ec52b2023-08-21 14:35:56 +010025 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
ramverma84beaf82018-08-15 21:28:42 +010026 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040027
28 <parent>
29 <groupId>org.onap.policy.parent</groupId>
30 <artifactId>integration</artifactId>
rameshiyer270128f672024-11-19 08:29:03 +000031 <version>5.0.2-SNAPSHOT</version>
liamfallon1003ec42023-10-18 09:08:10 +010032 <relativePath />
Pamela Dragosha965e2e2018-05-25 09:22:38 -040033 </parent>
34
35 <groupId>org.onap.policy.distribution</groupId>
Pamela Dragosh4d2eae62018-05-30 08:55:45 -040036 <artifactId>policy-distribution</artifactId>
rameshiyer270128f672024-11-19 08:29:03 +000037 <version>4.0.2-SNAPSHOT</version>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040038
39 <packaging>pom</packaging>
40
41 <name>policy-distribution</name>
42 <description>Code that implements our integration with SDC service distribution API.</description>
43
ramverma84beaf82018-08-15 21:28:42 +010044 <properties>
Pamela Dragoshbc03dc12020-01-20 08:00:43 -050045 <!-- Default Sonar configuration -->
Pamela Dragosh34efd972020-01-22 11:10:01 -050046 <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
ramvermaef2ff6b2018-08-23 13:50:31 +010047
rameshiyer270128f672024-11-19 08:29:03 +000048 <policy.common.version>3.0.2-SNAPSHOT</policy.common.version>
49 <policy.models.version>4.0.2-SNAPSHOT</policy.models.version>
adheli.tavares08ec52b2023-08-21 14:35:56 +010050 <surefireArgLine>
51 --add-opens java.base/java.lang=ALL-UNNAMED
52 </surefireArgLine>
ramverma84beaf82018-08-15 21:28:42 +010053 </properties>
54
Pamela Dragosha965e2e2018-05-25 09:22:38 -040055 <modules>
mmisf85f63f2018-08-02 09:45:44 +010056 <module>model</module>
liamfallonce63c402018-07-19 14:27:17 +010057 <module>main</module>
58 <module>reception</module>
59 <module>forwarding</module>
liamfallon37d8ade2018-07-30 16:58:54 +010060 <module>plugins</module>
ramvermab5f49342019-02-05 15:34:35 +000061 <module>packages</module>
Bilal Af762f742019-02-27 13:52:05 -050062 <module>testsuites</module>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040063 </modules>
64
liamfallon37d8ade2018-07-30 16:58:54 +010065 <dependencies>
66 <dependency>
adheli.tavares08ec52b2023-08-21 14:35:56 +010067 <groupId>org.junit.jupiter</groupId>
68 <artifactId>junit-jupiter-engine</artifactId>
liamfallon37d8ade2018-07-30 16:58:54 +010069 <scope>test</scope>
70 </dependency>
71 <dependency>
Pamela Dragoshdffa54c2020-03-26 10:03:11 -040072 <groupId>org.assertj</groupId>
73 <artifactId>assertj-core</artifactId>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
ramvermab5f49342019-02-05 15:34:35 +000077 <groupId>org.mockito</groupId>
adheli.tavares08ec52b2023-08-21 14:35:56 +010078 <artifactId>mockito-core</artifactId>
ramvermab5f49342019-02-05 15:34:35 +000079 <scope>test</scope>
liamfallon37d8ade2018-07-30 16:58:54 +010080 </dependency>
81 <dependency>
ramvermab5f49342019-02-05 15:34:35 +000082 <groupId>org.onap.policy.common</groupId>
83 <artifactId>policy-endpoints</artifactId>
84 <version>${policy.common.version}</version>
liamfallon37d8ade2018-07-30 16:58:54 +010085 </dependency>
86 </dependencies>
87
Pamela Dragosha965e2e2018-05-25 09:22:38 -040088 <distributionManagement>
89 <site>
ramverma84beaf82018-08-15 21:28:42 +010090 <id>ecomp-site</id>
91 <url>dav:${nexusproxy}${sitePath}</url>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040092 </site>
93 </distributionManagement>
Pamela Dragosha965e2e2018-05-25 09:22:38 -040094</project>