Jim Hahn | 4ec725e | 2019-02-06 13:14:57 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP policy |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 4 | ================================================================================ |
Jim Hahn | 7a4b6b8 | 2021-03-08 14:28:10 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. |
rameshiyer27 | beeb5e3 | 2024-01-25 14:25:37 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019-2020, 2022-2024 Nordix Foundation. |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
Pamela Dragosh | 1dccffb | 2018-02-16 10:29:09 -0500 | [diff] [blame] | 11 | |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
Pamela Dragosh | 1dccffb | 2018-02-16 10:29:09 -0500 | [diff] [blame] | 13 | |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
Jim Hahn | 4ec725e | 2019-02-06 13:14:57 -0500 | [diff] [blame] | 19 | ============LICENSE_END========================================================= |
Pamela Dragosh | 1dccffb | 2018-02-16 10:29:09 -0500 | [diff] [blame] | 20 | --> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 21 | |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 22 | <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/maven-v4_0_0.xsd"> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 24 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 25 | <parent> |
liamfallon | 73ba803 | 2018-07-30 10:22:27 +0100 | [diff] [blame] | 26 | <groupId>org.onap.policy.parent</groupId> |
| 27 | <artifactId>integration</artifactId> |
rameshiyer27 | 936d289 | 2024-07-12 09:07:19 +0000 | [diff] [blame] | 28 | <version>5.0.1-SNAPSHOT</version> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 29 | <relativePath /> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 30 | </parent> |
Guo Ruijing | a790f40 | 2017-08-03 09:05:02 +0000 | [diff] [blame] | 31 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 32 | <groupId>org.onap.policy.common</groupId> |
| 33 | <artifactId>common-modules</artifactId> |
rameshiyer27 | 936d289 | 2024-07-12 09:07:19 +0000 | [diff] [blame] | 34 | <version>3.0.1-SNAPSHOT</version> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 35 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 36 | <packaging>pom</packaging> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 37 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 38 | <name>policy-common</name> |
| 39 | <description>Common Modules for Policy-Engine in both XACML and Drools flavor</description> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 40 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 41 | <properties> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 42 | <!-- Project path properties --> |
| 43 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 44 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
| 45 | <releases.path>content/repositories/releases/</releases.path> |
| 46 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 47 | <staging.path>content/repositories/staging/</staging.path> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 48 | </properties> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 49 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 50 | <modules> |
| 51 | <module>capabilities</module> |
| 52 | <module>utils-test</module> |
| 53 | <module>utils</module> |
Jim Hahn | 4ec725e | 2019-02-06 13:14:57 -0500 | [diff] [blame] | 54 | <module>gson</module> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 55 | <module>common-parameters</module> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 56 | <module>policy-endpoints</module> |
Ram Krishna Verma | 01851b3 | 2022-02-14 14:17:14 -0500 | [diff] [blame] | 57 | <module>spring-utils</module> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 58 | </modules> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 59 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 60 | <build> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 61 | <plugins> |
| 62 | <plugin> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-deploy-plugin</artifactId> |
| 65 | <configuration> |
| 66 | <skip /> |
| 67 | </configuration> |
| 68 | </plugin> |
| 69 | <plugin> |
| 70 | <groupId>org.apache.maven.plugins</groupId> |
| 71 | <artifactId>maven-site-plugin</artifactId> |
| 72 | <dependencies> |
| 73 | <dependency> |
| 74 | <groupId>org.apache.maven.wagon</groupId> |
| 75 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
adheli.tavares | 349b4ae | 2023-07-21 09:41:01 +0100 | [diff] [blame] | 76 | <version>3.5.3</version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 77 | </dependency> |
| 78 | </dependencies> |
| 79 | </plugin> |
| 80 | </plugins> |
| 81 | </build> |
| 82 | <reporting> |
| 83 | <plugins> |
| 84 | <plugin> |
| 85 | <groupId>org.apache.maven.plugins</groupId> |
| 86 | <artifactId>maven-javadoc-plugin</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 87 | <configuration> |
| 88 | <failOnError>false</failOnError> |
| 89 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 90 | <docletArtifact> |
| 91 | <groupId>org.umlgraph</groupId> |
| 92 | <artifactId>umlgraph</artifactId> |
adheli.tavares | 349b4ae | 2023-07-21 09:41:01 +0100 | [diff] [blame] | 93 | <version>5.6.6</version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 94 | </docletArtifact> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 95 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 96 | </configuration> |
| 97 | </plugin> |
| 98 | </plugins> |
| 99 | </reporting> |
waynedunican | cf67c9e | 2024-06-25 14:47:25 +0100 | [diff] [blame] | 100 | <dependencies> |
| 101 | <dependency> |
| 102 | <groupId>org.junit.jupiter</groupId> |
| 103 | <artifactId>junit-jupiter-api</artifactId> |
adheli.tavares | 119c725 | 2024-07-19 12:14:20 +0100 | [diff] [blame] | 104 | <scope>test</scope> |
waynedunican | cf67c9e | 2024-06-25 14:47:25 +0100 | [diff] [blame] | 105 | </dependency> |
| 106 | </dependencies> |
liamfallon | 3298a28 | 2022-01-12 16:39:37 +0000 | [diff] [blame] | 107 | </project> |