Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 20 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 21 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
Guo Ruijing | e938284 | 2017-08-03 11:44:10 +0000 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.oparent</groupId> |
| 26 | <artifactId>oparent</artifactId> |
Pamela Dragosh | 871db38 | 2017-09-21 11:06:17 -0400 | [diff] [blame] | 27 | <version>0.1.1</version> |
Guo Ruijing | e938284 | 2017-08-03 11:44:10 +0000 | [diff] [blame] | 28 | <relativePath/> |
| 29 | </parent> |
| 30 | |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 31 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 32 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 33 | <version>1.2.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 34 | <packaging>pom</packaging> |
Jessica Wagantall | 9440ed7 | 2017-09-08 14:55:14 -0700 | [diff] [blame] | 35 | <name>policy-engine</name> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 36 | |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 37 | <description>The ONAP Policy Engine main pom</description> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 38 | |
| 39 | <properties> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 40 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 41 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 42 | <jetty.plugin.version>9.2.3.v20140905</jetty.plugin.version> |
| 43 | <project.source.version>1.8</project.source.version> |
| 44 | <project.target.version>1.8</project.target.version> |
| 45 | <project.encoding>UTF-8</project.encoding> |
ITSERVICES\cr056n | 29596e4 | 2017-08-14 09:46:27 -0700 | [diff] [blame] | 46 | |
Pamela Dragosh | ae8d775 | 2017-03-30 09:35:18 -0400 | [diff] [blame] | 47 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Pamela Dragosh | e1dcfc5 | 2017-04-06 11:06:34 -0400 | [diff] [blame] | 48 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
Anaël Closson | 98fe6d8 | 2017-04-12 11:10:10 +0200 | [diff] [blame] | 49 | <releases.path>content/repositories/releases/</releases.path> |
| 50 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 51 | <staging.path>content/repositories/staging/</staging.path> |
Magnusen, Drew (dm741q) | 4d82018 | 2017-11-21 12:03:01 -0600 | [diff] [blame] | 52 | <dmaap.version>1.0.0</dmaap.version> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 53 | <httpclient.version>4.5.5</httpclient.version> |
Pamela Dragosh | 82640b2 | 2018-02-08 11:09:31 -0500 | [diff] [blame^] | 54 | <jackson.version>2.9.4</jackson.version> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 55 | <commons.fileupload.version>1.3.3</commons.fileupload.version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 56 | </properties> |
| 57 | |
| 58 | |
| 59 | <modules> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 60 | <module>PolicyEngineUtils</module> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 61 | <module>ONAP-XACML</module> |
| 62 | <module>ONAP-REST</module> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 63 | <module>PolicyEngineAPI</module> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 64 | <module>ONAP-PDP</module> |
| 65 | <module>ONAP-PDP-REST</module> |
| 66 | <module>ONAP-PAP-REST</module> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 67 | <module>LogParser</module> |
| 68 | <module>PolicyEngineClient</module> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 69 | <module>BRMSGateway</module> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 70 | <module>POLICY-SDK-APP</module> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 71 | <module>ONAP-SDK-APP</module> |
Pamela Dragosh | c293854 | 2017-02-20 16:30:10 -0500 | [diff] [blame] | 72 | <module>packages</module> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 73 | </modules> |
| 74 | |
Pamela Dragosh | 2a66a1b | 2017-02-15 15:33:14 -0500 | [diff] [blame] | 75 | <distributionManagement> |
| 76 | <repository> |
| 77 | <id>ecomp-releases</id> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 78 | <name>ONAP Release Repository</name> |
Anaël Closson | 98fe6d8 | 2017-04-12 11:10:10 +0200 | [diff] [blame] | 79 | <url>${nexusproxy}/${releases.path}</url> |
Pamela Dragosh | 2a66a1b | 2017-02-15 15:33:14 -0500 | [diff] [blame] | 80 | </repository> |
| 81 | <snapshotRepository> |
| 82 | <id>ecomp-snapshots</id> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 83 | <name>ONAP Snapshot Repository</name> |
Anaël Closson | 98fe6d8 | 2017-04-12 11:10:10 +0200 | [diff] [blame] | 84 | <url>${nexusproxy}/${snapshots.path}</url> |
Pamela Dragosh | 2a66a1b | 2017-02-15 15:33:14 -0500 | [diff] [blame] | 85 | </snapshotRepository> |
Pamela Dragosh | 0cd5435 | 2017-04-03 10:51:20 -0400 | [diff] [blame] | 86 | <site> |
| 87 | <id>ecomp-site</id> |
| 88 | <url>dav:${nexusproxy}${sitePath}</url> |
| 89 | </site> |
Pamela Dragosh | 2a66a1b | 2017-02-15 15:33:14 -0500 | [diff] [blame] | 90 | </distributionManagement> |
| 91 | |
Pamela Dragosh | ff666e3 | 2017-11-10 20:40:14 -0500 | [diff] [blame] | 92 | <repositories> |
| 93 | <!-- LF repositories --> |
| 94 | <repository> |
| 95 | <id>ecomp-releases</id> |
| 96 | <name>Release Repository</name> |
| 97 | <url>${nexusproxy}/content/repositories/releases/</url> |
| 98 | </repository> |
| 99 | <repository> |
| 100 | <id>ecomp-staging</id> |
| 101 | <name>Staging Repository</name> |
| 102 | <url>${nexusproxy}/content/repositories/staging/</url> |
| 103 | </repository> |
| 104 | <repository> |
| 105 | <id>ecomp-snapshots</id> |
| 106 | <name>Snapshots Repository</name> |
| 107 | <url>${nexusproxy}/content/repositories/snapshots/</url> |
| 108 | </repository> |
| 109 | <repository> |
| 110 | <id>ecomp-public</id> |
| 111 | <name>Public Repository</name> |
| 112 | <url>${nexusproxy}/content/repositories/public/</url> |
| 113 | </repository> |
| 114 | <!-- LF repositories END--> |
| 115 | </repositories> |
| 116 | |
Pamela Dragosh | 0cd5435 | 2017-04-03 10:51:20 -0400 | [diff] [blame] | 117 | <reporting> |
| 118 | <plugins> |
| 119 | <plugin> |
| 120 | <groupId>org.apache.maven.plugins</groupId> |
| 121 | <artifactId>maven-javadoc-plugin</artifactId> |
| 122 | <version>2.10.4</version> |
| 123 | <configuration> |
| 124 | <failOnError>false</failOnError> |
| 125 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 126 | <docletArtifact> |
| 127 | <groupId>org.umlgraph</groupId> |
| 128 | <artifactId>umlgraph</artifactId> |
| 129 | <version>5.6</version> |
| 130 | </docletArtifact> |
| 131 | <additionalparam>-views</additionalparam> |
| 132 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 133 | </configuration> |
| 134 | </plugin> |
| 135 | </plugins> |
| 136 | </reporting> |
| 137 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 138 | <dependencies> |
| 139 | |
| 140 | <dependency> |
| 141 | <groupId>javax.servlet</groupId> |
| 142 | <artifactId>javax.servlet-api</artifactId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 143 | <version>3.1.0</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 144 | </dependency> |
| 145 | <dependency> |
| 146 | <!-- org.w3c.dom dependencies --> |
| 147 | <groupId>xml-apis</groupId> |
| 148 | <artifactId>xml-apis</artifactId> |
| 149 | <version>1.3.03</version> |
| 150 | </dependency> |
| 151 | </dependencies> |
| 152 | |
| 153 | <build> |
| 154 | <plugins> |
| 155 | <plugin> |
Pamela Dragosh | 6a65705 | 2017-02-17 15:41:18 -0500 | [diff] [blame] | 156 | <groupId>org.sonatype.plugins</groupId> |
| 157 | <artifactId>nexus-staging-maven-plugin</artifactId> |
Pamela Dragosh | 6a65705 | 2017-02-17 15:41:18 -0500 | [diff] [blame] | 158 | <extensions>true</extensions> |
| 159 | <configuration> |
| 160 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 161 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
Pamela Dragosh | 5497a61 | 2017-07-31 21:30:18 -0400 | [diff] [blame] | 162 | <serverId>ecomp-staging</serverId> |
Pamela Dragosh | 6a65705 | 2017-02-17 15:41:18 -0500 | [diff] [blame] | 163 | </configuration> |
| 164 | </plugin> |
| 165 | <plugin> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 166 | <groupId>org.apache.maven.plugins</groupId> |
| 167 | <artifactId>maven-deploy-plugin</artifactId> |
Pamela Dragosh | 6a65705 | 2017-02-17 15:41:18 -0500 | [diff] [blame] | 168 | <configuration> |
| 169 | <skip /> |
| 170 | </configuration> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 171 | </plugin> |
| 172 | <plugin> |
| 173 | <groupId>org.apache.maven.plugins</groupId> |
| 174 | <artifactId>maven-surefire-plugin</artifactId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 175 | </plugin> |
| 176 | <plugin> |
| 177 | <groupId>org.apache.maven.plugins</groupId> |
| 178 | <artifactId>maven-clean-plugin</artifactId> |
| 179 | <version>2.4.1</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 180 | </plugin> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 181 | <plugin> |
| 182 | <groupId>org.apache.maven.plugins</groupId> |
| 183 | <artifactId>maven-compiler-plugin</artifactId> |
| 184 | <version>3.0</version> |
| 185 | <configuration> |
| 186 | <encoding>${project.encoding}</encoding> |
| 187 | <source>${project.source.version}</source> |
| 188 | <target>${project.target.version}</target> |
| 189 | </configuration> |
| 190 | </plugin> |
| 191 | <plugin> |
| 192 | <groupId>org.apache.maven.plugins</groupId> |
| 193 | <artifactId>maven-resources-plugin</artifactId> |
| 194 | <version>2.6</version> |
| 195 | <configuration> |
| 196 | <encoding>${project.encoding}</encoding> |
| 197 | </configuration> |
| 198 | </plugin> |
| 199 | <plugin> |
| 200 | <groupId>org.apache.maven.plugins</groupId> |
| 201 | <artifactId>maven-war-plugin</artifactId> |
| 202 | <version>2.3</version> |
| 203 | <configuration> |
| 204 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 205 | </configuration> |
| 206 | </plugin> |
ITSERVICES\cr056n | 29596e4 | 2017-08-14 09:46:27 -0700 | [diff] [blame] | 207 | <!-- The Jetty plugin allows us to easily test the development build by |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 208 | running jetty:run on the command line. --> |
| 209 | |
| 210 | <plugin> |
| 211 | <groupId>org.eclipse.jetty</groupId> |
| 212 | <artifactId>jetty-maven-plugin</artifactId> |
| 213 | <version>${jetty.plugin.version}</version> |
| 214 | <configuration> |
| 215 | <scanIntervalSeconds>2</scanIntervalSeconds> |
| 216 | </configuration> |
| 217 | </plugin> |
| 218 | <plugin> |
| 219 | <groupId>com.fortify.ps.maven.plugin</groupId> |
| 220 | <artifactId>sca-maven-plugin</artifactId> |
| 221 | <version>4.20</version> |
| 222 | </plugin> |
| 223 | <plugin> |
Pamela Dragosh | 0cd5435 | 2017-04-03 10:51:20 -0400 | [diff] [blame] | 224 | <groupId>org.apache.maven.plugins</groupId> |
| 225 | <artifactId>maven-site-plugin</artifactId> |
Pamela Dragosh | 0cd5435 | 2017-04-03 10:51:20 -0400 | [diff] [blame] | 226 | <dependencies> |
| 227 | <dependency> |
| 228 | <groupId>org.apache.maven.wagon</groupId> |
| 229 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 230 | <version>2.10</version> |
| 231 | </dependency> |
| 232 | </dependencies> |
| 233 | </plugin> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 234 | </plugins> |
Pamela Dragosh | 40aef4f | 2017-08-14 13:53:06 -0400 | [diff] [blame] | 235 | <pluginManagement> |
| 236 | <plugins> |
| 237 | <plugin> |
| 238 | <groupId>org.eclipse.m2e</groupId> |
| 239 | <artifactId>lifecycle-mapping</artifactId> |
| 240 | <version>1.0.0</version> |
| 241 | <configuration> |
| 242 | <lifecycleMappingMetadata> |
| 243 | <pluginExecutions> |
| 244 | <pluginExecution> |
| 245 | <pluginExecutionFilter> |
| 246 | <groupId>org.apache.maven.plugins</groupId> |
| 247 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 248 | <versionRange>2.17,)</versionRange> |
| 249 | <goals> |
| 250 | <goal>check</goal> |
| 251 | </goals> |
| 252 | </pluginExecutionFilter> |
| 253 | <action> |
| 254 | <ignore /> |
| 255 | </action> |
| 256 | </pluginExecution> |
| 257 | </pluginExecutions> |
| 258 | </lifecycleMappingMetadata> |
| 259 | </configuration> |
| 260 | </plugin> |
| 261 | </plugins> |
| 262 | </pluginManagement> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 263 | </build> |
| 264 | </project> |