Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ECOMP Policy Engine |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 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. |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 24 | |
| 25 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 26 | <artifactId>ECOMP-PAP-REST</artifactId> |
| 27 | <description>ECOMP-PAP-REST</description> |
| 28 | <packaging>war</packaging> |
| 29 | <parent> |
| 30 | <groupId>org.openecomp.policy.engine</groupId> |
| 31 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 32 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 33 | </parent> |
| 34 | <build> |
| 35 | <plugins> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 36 | <plugin> |
| 37 | <artifactId>maven-war-plugin</artifactId> |
| 38 | <version>2.1</version> |
| 39 | <configuration> |
| 40 | <attachClasses>true</attachClasses> |
| 41 | <webResources> |
| 42 | <webResource> |
| 43 | <directory>src/main/java/</directory> |
| 44 | <targetPath>WEB-INF/classes/</targetPath> |
| 45 | <includes> |
| 46 | <include>hibernate.cfg.xml</include> |
| 47 | </includes> |
| 48 | </webResource> |
| 49 | </webResources> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | <plugin> |
| 53 | <groupId>org.apache.maven.plugins</groupId> |
| 54 | <artifactId>maven-compiler-plugin</artifactId> |
| 55 | <version>3.2</version> |
| 56 | <configuration> |
| 57 | <source>1.8</source> |
| 58 | <target>1.8</target> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 62 | </build> |
| 63 | <dependencies> |
| 64 | <dependency> |
| 65 | <!-- To support integrity-audit audit of BackupMonitorEntity table --> |
| 66 | <groupId>org.openecomp.policy.engine</groupId> |
| 67 | <artifactId>PolicyEngineUtils</artifactId> |
| 68 | <version>${project.version}</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 69 | <exclusions> |
| 70 | <exclusion> |
| 71 | <groupId>com.att.aft</groupId> |
| 72 | <artifactId>dme2</artifactId> |
| 73 | </exclusion> |
| 74 | <exclusion> |
| 75 | <groupId>org.json</groupId> |
| 76 | <artifactId>json</artifactId> |
| 77 | </exclusion> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 78 | <exclusion> |
| 79 | <groupId>com.att.nsa</groupId> |
| 80 | <artifactId>dmaapClient</artifactId> |
| 81 | </exclusion> |
| 82 | <exclusion> |
| 83 | <groupId>com.att.nsa</groupId> |
| 84 | <artifactId>cambriaClient</artifactId> |
| 85 | </exclusion> |
| 86 | <exclusion> |
| 87 | <groupId>com.att.cadi</groupId> |
| 88 | <artifactId>cadi-aaf</artifactId> |
| 89 | </exclusion> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 90 | </exclusions> |
| 91 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 92 | <dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 93 | <groupId>org.apache.commons</groupId> |
| 94 | <artifactId>commons-lang3</artifactId> |
| 95 | <version>3.4</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.openecomp.policy.engine</groupId> |
| 99 | <artifactId>ECOMP-PDP</artifactId> |
| 100 | <version>${project.version}</version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 101 | <exclusions> |
| 102 | <exclusion> |
| 103 | <groupId>org.json</groupId> |
| 104 | <artifactId>json</artifactId> |
| 105 | </exclusion> |
| 106 | </exclusions> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.openecomp.policy.common</groupId> |
| 110 | <artifactId>ECOMP-Logging</artifactId> |
| 111 | <version>${common-modules.version}</version> |
rb7147 | 685ed15 | 2017-06-09 15:11:06 -0400 | [diff] [blame] | 112 | <exclusions> |
| 113 | <exclusion> |
| 114 | <groupId>org.powermock</groupId> |
| 115 | <artifactId>powermock-module-junit4</artifactId> |
| 116 | </exclusion> |
| 117 | <exclusion> |
| 118 | <groupId>org.powermock</groupId> |
| 119 | <artifactId>powermock-api-mockito</artifactId> |
| 120 | </exclusion> |
| 121 | </exclusions> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 122 | </dependency> |
| 123 | <dependency> |
| 124 | <groupId>javax.servlet</groupId> |
| 125 | <artifactId>javax.servlet-api</artifactId> |
| 126 | <version>3.1.0</version> |
| 127 | </dependency> |
| 128 | <dependency> |
| 129 | <groupId>commons-logging</groupId> |
| 130 | <artifactId>commons-logging</artifactId> |
| 131 | <version>1.1.3</version> |
| 132 | <exclusions> |
| 133 | <exclusion> |
| 134 | <groupId>javax.servlet</groupId> |
| 135 | <artifactId>servlet-api</artifactId> |
| 136 | </exclusion> |
| 137 | </exclusions> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>org.apache.commons</groupId> |
| 141 | <artifactId>commons-compress</artifactId> |
| 142 | <version>1.8</version> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>commons-fileupload</groupId> |
| 146 | <artifactId>commons-fileupload</artifactId> |
| 147 | <version>1.3.1</version> |
| 148 | </dependency> |
| 149 | <dependency> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 150 | <groupId>org.apache.logging.log4j</groupId> |
| 151 | <artifactId>log4j-core</artifactId> |
| 152 | <version>2.8.2</version> |
| 153 | </dependency> |
| 154 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 155 | <groupId>log4j</groupId> |
| 156 | <artifactId>apache-log4j-extras</artifactId> |
| 157 | <version>1.2.17</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>commons-io</groupId> |
| 161 | <artifactId>commons-io</artifactId> |
| 162 | <version>2.4</version> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>io.netty</groupId> |
| 166 | <artifactId>netty</artifactId> |
| 167 | <version>3.5.0.Final</version> |
| 168 | </dependency> |
| 169 | <dependency> |
| 170 | <groupId>com.google.guava</groupId> |
| 171 | <artifactId>guava</artifactId> |
| 172 | <version>14.0.1</version> |
| 173 | </dependency> |
| 174 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 175 | <groupId>org.eclipse.jgit</groupId> |
| 176 | <artifactId>org.eclipse.jgit</artifactId> |
| 177 | <version>3.2.0.201312181205-r</version> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>junit</groupId> |
| 181 | <artifactId>junit</artifactId> |
| 182 | <version>4.11</version> |
| 183 | <scope>test</scope> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.apache.tomcat</groupId> |
| 187 | <artifactId>tomcat-jdbc</artifactId> |
| 188 | <version>8.0.24</version> |
| 189 | </dependency> |
| 190 | <dependency> |
| 191 | <groupId>com.h2database</groupId> |
| 192 | <artifactId>h2</artifactId> |
| 193 | <version>[1.4.186,)</version> |
| 194 | </dependency> |
| 195 | <dependency> |
| 196 | <groupId>com.github.fge</groupId> |
| 197 | <artifactId>json-patch</artifactId> |
| 198 | <version>1.9</version> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.eclipse.persistence</groupId> |
| 202 | <artifactId>javax.persistence</artifactId> |
| 203 | <version>2.1.0</version> |
| 204 | </dependency> |
| 205 | <dependency> |
| 206 | <groupId>org.eclipse.persistence</groupId> |
| 207 | <artifactId>eclipselink</artifactId> |
| 208 | <version>2.6.0</version> |
| 209 | </dependency> |
| 210 | |
| 211 | <dependency> |
| 212 | <groupId>mysql</groupId> |
| 213 | <artifactId>mysql-connector-java</artifactId> |
| 214 | <version>5.1.30</version> |
| 215 | </dependency> |
| 216 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 217 | <groupId>org.springframework</groupId> |
| 218 | <artifactId>spring-mock</artifactId> |
| 219 | <version>2.0.8</version> |
| 220 | </dependency> |
| 221 | <dependency> |
ITSERVICES\rb7147 | dda032f | 2017-05-08 22:20:44 -0400 | [diff] [blame] | 222 | <groupId>org.openecomp.policy.engine</groupId> |
| 223 | <artifactId>ControlloopPolicy</artifactId> |
| 224 | <version>${project.version}</version> |
| 225 | </dependency> |
| 226 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 227 | <groupId>com.mockrunner</groupId> |
| 228 | <artifactId>mockrunner</artifactId> |
| 229 | <version>0.3.1</version> |
| 230 | </dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 231 | <!-- Spring --> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 232 | <dependency> |
| 233 | <groupId>org.springframework</groupId> |
| 234 | <artifactId>spring-core</artifactId> |
| 235 | <version>${springframework.version}</version> |
| 236 | </dependency> |
| 237 | <dependency> |
| 238 | <groupId>org.springframework</groupId> |
| 239 | <artifactId>spring-web</artifactId> |
| 240 | <version>${springframework.version}</version> |
| 241 | </dependency> |
| 242 | <dependency> |
| 243 | <groupId>org.springframework</groupId> |
| 244 | <artifactId>spring-webmvc</artifactId> |
| 245 | <version>${springframework.version}</version> |
| 246 | </dependency> |
| 247 | <dependency> |
| 248 | <groupId>org.springframework</groupId> |
| 249 | <artifactId>spring-tx</artifactId> |
| 250 | <version>${springframework.version}</version> |
| 251 | </dependency> |
| 252 | <dependency> |
| 253 | <groupId>org.springframework</groupId> |
| 254 | <artifactId>spring-context-support</artifactId> |
| 255 | <version>${springframework.version}</version> |
| 256 | </dependency> |
| 257 | <dependency> |
| 258 | <groupId>org.springframework</groupId> |
| 259 | <artifactId>spring-orm</artifactId> |
| 260 | <version>${springframework.version}</version> |
| 261 | </dependency> |
| 262 | <!-- Hibernate --> |
| 263 | <dependency> |
| 264 | <groupId>org.hibernate</groupId> |
| 265 | <artifactId>hibernate-core</artifactId> |
| 266 | <version>${hibernate.version}</version> |
| 267 | </dependency> |
| 268 | <dependency> |
| 269 | <groupId>org.hibernate</groupId> |
| 270 | <artifactId>hibernate-validator</artifactId> |
| 271 | <version>5.1.3.Final</version> |
| 272 | </dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 273 | <!-- https://mvnrepository.com/artifact/org.json/json --> |
| 274 | <dependency> |
| 275 | <groupId>org.json</groupId> |
| 276 | <artifactId>json</artifactId> |
| 277 | <version>20160810</version> |
| 278 | </dependency> |
| 279 | <dependency> |
| 280 | <groupId>com.fasterxml.jackson.core</groupId> |
| 281 | <artifactId>jackson-annotations</artifactId> |
| 282 | <version>2.6.3</version> |
| 283 | </dependency> |
| 284 | <dependency> |
| 285 | <groupId>com.fasterxml.jackson.core</groupId> |
| 286 | <artifactId>jackson-core</artifactId> |
| 287 | <version>2.6.3</version> |
| 288 | </dependency> |
| 289 | <dependency> |
| 290 | <groupId>com.fasterxml.jackson.core</groupId> |
| 291 | <artifactId>jackson-databind</artifactId> |
| 292 | <version>2.6.3</version> |
| 293 | </dependency> |
| 294 | <dependency> |
| 295 | <groupId>com.fasterxml.jackson.module</groupId> |
| 296 | <artifactId>jackson-module-jaxb-annotations</artifactId> |
| 297 | <version>${jackson.version}</version> |
| 298 | </dependency> |
| 299 | <dependency> |
| 300 | <groupId>com.fasterxml.jackson.module</groupId> |
| 301 | <artifactId>jackson-module-jsonSchema</artifactId> |
| 302 | <version>${jackson.version}</version> |
| 303 | </dependency> |
| 304 | <dependency> |
| 305 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 306 | <artifactId>jackson-dataformat-xml</artifactId> |
| 307 | <version>${jackson.version}</version> |
| 308 | </dependency> |
| 309 | <dependency> |
| 310 | <groupId>org.elasticsearch</groupId> |
| 311 | <artifactId>elasticsearch</artifactId> |
| 312 | <version>5.1.2</version> |
| 313 | </dependency> |
| 314 | <dependency> |
| 315 | <groupId>io.searchbox</groupId> |
| 316 | <artifactId>jest</artifactId> |
| 317 | <version>2.0.4</version> |
| 318 | <exclusions> |
| 319 | <exclusion> |
| 320 | <groupId>commons-logging</groupId> |
| 321 | <artifactId>commons-logging</artifactId> |
| 322 | </exclusion> |
| 323 | </exclusions> |
| 324 | </dependency> |
| 325 | <dependency> |
| 326 | <groupId>args4j</groupId> |
| 327 | <artifactId>args4j</artifactId> |
| 328 | <version>2.32</version> |
| 329 | </dependency> |
| 330 | <!-- https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-dbcp --> |
| 331 | <dependency> |
| 332 | <groupId>org.apache.tomcat</groupId> |
| 333 | <artifactId>tomcat-dbcp</artifactId> |
| 334 | <version>8.5.9</version> |
| 335 | </dependency> |
| 336 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 337 | </dependencies> |
| 338 | <properties> |
| 339 | <springframework.version>4.2.0.RELEASE</springframework.version> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 340 | <hibernate.version>4.3.10.Final</hibernate.version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 341 | <projectversion>2.0.2</projectversion> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 342 | <jackson.version>2.6.0</jackson.version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 343 | </properties> |
| 344 | </project> |