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. |
liamfallon | 3298a28 | 2022-01-12 16:39:37 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019-2020, 2022 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> |
Rashmi Pujar | dc850de | 2021-11-30 13:31:56 -0500 | [diff] [blame] | 28 | <version>3.5.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> |
liamfallon | 9e46355 | 2021-11-24 16:34:21 +0000 | [diff] [blame] | 34 | <version>1.10.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> |
| 42 | <!-- Project common build settings --> |
Pamela Dragosh | 1dccffb | 2018-02-16 10:29:09 -0500 | [diff] [blame] | 43 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 44 | <!-- Project path properties --> |
| 45 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 46 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
| 47 | <releases.path>content/repositories/releases/</releases.path> |
| 48 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 49 | <staging.path>content/repositories/staging/</staging.path> |
Pamela Dragosh | 1dccffb | 2018-02-16 10:29:09 -0500 | [diff] [blame] | 50 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 51 | <!-- Project common dependency versions --> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 52 | <commons-lang3.version>3.4</commons-lang3.version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 53 | </properties> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 54 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 55 | <modules> |
| 56 | <module>capabilities</module> |
| 57 | <module>utils-test</module> |
| 58 | <module>utils</module> |
Jim Hahn | 4ec725e | 2019-02-06 13:14:57 -0500 | [diff] [blame] | 59 | <module>gson</module> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 60 | <module>common-logging</module> |
liamfallon | 32c6ed6 | 2018-07-24 12:38:24 +0100 | [diff] [blame] | 61 | <module>common-parameters</module> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 62 | <module>integrity-audit</module> |
| 63 | <module>integrity-monitor</module> |
| 64 | <module>policy-endpoints</module> |
| 65 | </modules> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 66 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 67 | <dependencyManagement> |
| 68 | <dependencies> |
| 69 | <dependency> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 70 | <groupId>org.apache.commons</groupId> |
| 71 | <artifactId>commons-lang3</artifactId> |
| 72 | <version>${commons-lang3.version}</version> |
| 73 | </dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 74 | </dependencies> |
| 75 | </dependencyManagement> |
Rashmi Pujar | dc850de | 2021-11-30 13:31:56 -0500 | [diff] [blame] | 76 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 77 | <build> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 78 | <plugins> |
| 79 | <plugin> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-deploy-plugin</artifactId> |
| 82 | <configuration> |
| 83 | <skip /> |
| 84 | </configuration> |
| 85 | </plugin> |
| 86 | <plugin> |
| 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-site-plugin</artifactId> |
| 89 | <dependencies> |
| 90 | <dependency> |
| 91 | <groupId>org.apache.maven.wagon</groupId> |
| 92 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 93 | <version>2.10</version> |
| 94 | </dependency> |
| 95 | </dependencies> |
| 96 | </plugin> |
| 97 | </plugins> |
| 98 | </build> |
| 99 | <reporting> |
| 100 | <plugins> |
| 101 | <plugin> |
| 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-javadoc-plugin</artifactId> |
| 104 | <version>2.10.4</version> |
| 105 | <configuration> |
| 106 | <failOnError>false</failOnError> |
| 107 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 108 | <docletArtifact> |
| 109 | <groupId>org.umlgraph</groupId> |
| 110 | <artifactId>umlgraph</artifactId> |
| 111 | <version>5.6</version> |
| 112 | </docletArtifact> |
| 113 | <additionalparam>-views</additionalparam> |
| 114 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 115 | </configuration> |
| 116 | </plugin> |
| 117 | </plugins> |
| 118 | </reporting> |
liamfallon | 3298a28 | 2022-01-12 16:39:37 +0000 | [diff] [blame] | 119 | </project> |