Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
| 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
| 21 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
| 22 | --> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <groupId>org.onap.appc</groupId> |
| 29 | <artifactId>appc</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 30 | <version>1.4.0-SNAPSHOT</version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>appc-test-dependencies</artifactId> |
| 34 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 35 | <version>1.4.0-SNAPSHOT</version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 36 | <packaging>pom</packaging> |
| 37 | |
| 38 | <properties> |
| 39 | <licenseDir>${project.parent.basedir}</licenseDir> |
| 40 | </properties> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <version>4.12</version> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.mockito</groupId> |
| 50 | <artifactId>mockito-core</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.powermock</groupId> |
| 54 | <artifactId>powermock-api-mockito</artifactId> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.powermock</groupId> |
| 58 | <artifactId>powermock-module-junit4</artifactId> |
| 59 | <version>1.6.2</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>com.h2database</groupId> |
| 63 | <artifactId>h2</artifactId> |
| 64 | <version>1.4.196</version> |
| 65 | </dependency> |
| 66 | </dependencies> |
Skip Wonnell | eb27ca3 | 2018-01-12 10:17:57 -0600 | [diff] [blame] | 67 | </project> |