Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy SDC Service Distribution |
| 4 | ================================================================================ |
Jim Hahn | d1cd4a2 | 2021-03-12 11:55:30 -0500 | [diff] [blame] | 5 | Copyright (C) 2018, 2020-2021 AT&T Intellectual Property. All rights reserved. |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 6 | Copyright (C) 2019 Nordix Foundation. |
Pamela Dragosh | dffa54c | 2020-03-26 10:03:11 -0400 | [diff] [blame] | 7 | Modifications Copyright (C) 2020 AT&T Inc. |
a.sreekumar | 922bb95 | 2021-03-09 18:23:38 +0000 | [diff] [blame] | 8 | Modifications Copyright (C) 2021 Bell Canada. |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 9 | ================================================================================ |
| 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 Hahn | 2d5be86 | 2020-05-29 14:51:25 -0400 | [diff] [blame] | 13 | |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Jim Hahn | 2d5be86 | 2020-05-29 14:51:25 -0400 | [diff] [blame] | 15 | |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 16 | 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 | |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 24 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
adheli.tavares | 08ec52b | 2023-08-21 14:35:56 +0100 | [diff] [blame] | 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
ramverma | 84beaf8 | 2018-08-15 21:28:42 +0100 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 27 | |
| 28 | <parent> |
| 29 | <groupId>org.onap.policy.parent</groupId> |
| 30 | <artifactId>integration</artifactId> |
rameshiyer27 | 0128f67 | 2024-11-19 08:29:03 +0000 | [diff] [blame^] | 31 | <version>5.0.2-SNAPSHOT</version> |
liamfallon | 1003ec4 | 2023-10-18 09:08:10 +0100 | [diff] [blame] | 32 | <relativePath /> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 33 | </parent> |
| 34 | |
| 35 | <groupId>org.onap.policy.distribution</groupId> |
Pamela Dragosh | 4d2eae6 | 2018-05-30 08:55:45 -0400 | [diff] [blame] | 36 | <artifactId>policy-distribution</artifactId> |
rameshiyer27 | 0128f67 | 2024-11-19 08:29:03 +0000 | [diff] [blame^] | 37 | <version>4.0.2-SNAPSHOT</version> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 38 | |
| 39 | <packaging>pom</packaging> |
| 40 | |
| 41 | <name>policy-distribution</name> |
| 42 | <description>Code that implements our integration with SDC service distribution API.</description> |
| 43 | |
ramverma | 84beaf8 | 2018-08-15 21:28:42 +0100 | [diff] [blame] | 44 | <properties> |
Pamela Dragosh | bc03dc1 | 2020-01-20 08:00:43 -0500 | [diff] [blame] | 45 | <!-- Default Sonar configuration --> |
Pamela Dragosh | 34efd97 | 2020-01-22 11:10:01 -0500 | [diff] [blame] | 46 | <jacoco.dataFile>${project.basedir}/../target/code-coverage/jacoco-ut.exec</jacoco.dataFile> |
ramverma | ef2ff6b | 2018-08-23 13:50:31 +0100 | [diff] [blame] | 47 | |
rameshiyer27 | 0128f67 | 2024-11-19 08:29:03 +0000 | [diff] [blame^] | 48 | <policy.common.version>3.0.2-SNAPSHOT</policy.common.version> |
| 49 | <policy.models.version>4.0.2-SNAPSHOT</policy.models.version> |
adheli.tavares | 08ec52b | 2023-08-21 14:35:56 +0100 | [diff] [blame] | 50 | <surefireArgLine> |
| 51 | --add-opens java.base/java.lang=ALL-UNNAMED |
| 52 | </surefireArgLine> |
ramverma | 84beaf8 | 2018-08-15 21:28:42 +0100 | [diff] [blame] | 53 | </properties> |
| 54 | |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 55 | <modules> |
mmis | f85f63f | 2018-08-02 09:45:44 +0100 | [diff] [blame] | 56 | <module>model</module> |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 57 | <module>main</module> |
| 58 | <module>reception</module> |
| 59 | <module>forwarding</module> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 60 | <module>plugins</module> |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 61 | <module>packages</module> |
Bilal A | f762f74 | 2019-02-27 13:52:05 -0500 | [diff] [blame] | 62 | <module>testsuites</module> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 63 | </modules> |
| 64 | |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 65 | <dependencies> |
| 66 | <dependency> |
adheli.tavares | 08ec52b | 2023-08-21 14:35:56 +0100 | [diff] [blame] | 67 | <groupId>org.junit.jupiter</groupId> |
| 68 | <artifactId>junit-jupiter-engine</artifactId> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
Pamela Dragosh | dffa54c | 2020-03-26 10:03:11 -0400 | [diff] [blame] | 72 | <groupId>org.assertj</groupId> |
| 73 | <artifactId>assertj-core</artifactId> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 77 | <groupId>org.mockito</groupId> |
adheli.tavares | 08ec52b | 2023-08-21 14:35:56 +0100 | [diff] [blame] | 78 | <artifactId>mockito-core</artifactId> |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 79 | <scope>test</scope> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 80 | </dependency> |
| 81 | <dependency> |
ramverma | b5f4934 | 2019-02-05 15:34:35 +0000 | [diff] [blame] | 82 | <groupId>org.onap.policy.common</groupId> |
| 83 | <artifactId>policy-endpoints</artifactId> |
| 84 | <version>${policy.common.version}</version> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 85 | </dependency> |
| 86 | </dependencies> |
| 87 | |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 88 | <distributionManagement> |
| 89 | <site> |
ramverma | 84beaf8 | 2018-08-15 21:28:42 +0100 | [diff] [blame] | 90 | <id>ecomp-site</id> |
| 91 | <url>dav:${nexusproxy}${sitePath}</url> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 92 | </site> |
| 93 | </distributionManagement> |
Pamela Dragosh | a965e2e | 2018-05-25 09:22:38 -0400 | [diff] [blame] | 94 | </project> |