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 | ================================================================================ |
Pamela Dragosh | 739a86b | 2020-01-09 20:26:46 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. |
liamfallon | 89b8fe5 | 2019-11-01 11:21:54 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019 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> |
Jim Hahn | 89b0796 | 2020-04-24 09:34:07 -0400 | [diff] [blame] | 28 | <version>3.1.3-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> |
Ram Krishna Verma | 2cf13e0 | 2020-04-14 12:39:27 -0400 | [diff] [blame] | 34 | <version>1.6.5-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> |
Pamela Dragosh | f391f8a | 2017-11-10 19:18:46 -0500 | [diff] [blame] | 76 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 77 | <build> |
| 78 | <pluginManagement> |
| 79 | <plugins> |
| 80 | <plugin> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 81 | <groupId>org.eclipse.m2e</groupId> |
| 82 | <artifactId>lifecycle-mapping</artifactId> |
| 83 | <version>1.0.0</version> |
| 84 | <configuration> |
| 85 | <lifecycleMappingMetadata> |
| 86 | <pluginExecutions> |
| 87 | <pluginExecution> |
| 88 | <pluginExecutionFilter> |
| 89 | <groupId>org.apache.maven.plugins</groupId> |
| 90 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 91 | <versionRange>2.17,)</versionRange> |
| 92 | <goals> |
| 93 | <goal>check</goal> |
| 94 | </goals> |
| 95 | </pluginExecutionFilter> |
| 96 | <action> |
| 97 | <ignore /> |
| 98 | </action> |
| 99 | </pluginExecution> |
| 100 | </pluginExecutions> |
| 101 | </lifecycleMappingMetadata> |
| 102 | </configuration> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | </pluginManagement> |
| 106 | <plugins> |
| 107 | <plugin> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 108 | <groupId>org.apache.maven.plugins</groupId> |
| 109 | <artifactId>maven-deploy-plugin</artifactId> |
| 110 | <configuration> |
| 111 | <skip /> |
| 112 | </configuration> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-site-plugin</artifactId> |
| 117 | <dependencies> |
| 118 | <dependency> |
| 119 | <groupId>org.apache.maven.wagon</groupId> |
| 120 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 121 | <version>2.10</version> |
| 122 | </dependency> |
| 123 | </dependencies> |
| 124 | </plugin> |
Pamela Dragosh | f133be2 | 2018-08-22 14:02:14 -0400 | [diff] [blame] | 125 | <plugin> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 126 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 127 | <executions> |
| 128 | <execution> |
| 129 | <id>onap-java-style</id> |
| 130 | <goals> |
| 131 | <goal>check</goal> |
| 132 | </goals> |
| 133 | <phase>process-sources</phase> |
| 134 | <configuration> |
Pamela Dragosh | f133be2 | 2018-08-22 14:02:14 -0400 | [diff] [blame] | 135 | <!-- Use Google Java Style Guide: |
| 136 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 137 | with minor changes --> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 138 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
Pamela Dragosh | f133be2 | 2018-08-22 14:02:14 -0400 | [diff] [blame] | 139 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
HOCKLA | 79e6931 | 2019-12-11 10:24:44 -0600 | [diff] [blame] | 140 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 141 | <includeResources>true</includeResources> |
| 142 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 143 | <includeTestResources>true</includeTestResources> |
| 144 | <excludes> |
| 145 | </excludes> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 146 | <consoleOutput>true</consoleOutput> |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 147 | <failsOnViolation>true</failsOnViolation> |
liamfallon | cf282dd | 2018-09-07 13:36:41 +0100 | [diff] [blame] | 148 | <violationSeverity>warning</violationSeverity> |
| 149 | </configuration> |
| 150 | </execution> |
| 151 | </executions> |
| 152 | <dependencies> |
| 153 | <dependency> |
| 154 | <groupId>org.onap.oparent</groupId> |
| 155 | <artifactId>checkstyle</artifactId> |
| 156 | <version>${oparent.version}</version> |
| 157 | <scope>compile</scope> |
| 158 | </dependency> |
| 159 | </dependencies> |
Pamela Dragosh | f133be2 | 2018-08-22 14:02:14 -0400 | [diff] [blame] | 160 | </plugin> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 161 | </plugins> |
| 162 | </build> |
| 163 | <reporting> |
| 164 | <plugins> |
| 165 | <plugin> |
| 166 | <groupId>org.apache.maven.plugins</groupId> |
| 167 | <artifactId>maven-javadoc-plugin</artifactId> |
| 168 | <version>2.10.4</version> |
| 169 | <configuration> |
| 170 | <failOnError>false</failOnError> |
| 171 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 172 | <docletArtifact> |
| 173 | <groupId>org.umlgraph</groupId> |
| 174 | <artifactId>umlgraph</artifactId> |
| 175 | <version>5.6</version> |
| 176 | </docletArtifact> |
| 177 | <additionalparam>-views</additionalparam> |
| 178 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 179 | </configuration> |
| 180 | </plugin> |
| 181 | </plugins> |
| 182 | </reporting> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 183 | </project> |