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 | --> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.openecomp.policy.engine</groupId> |
| 28 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 29 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 32 | <artifactId>ECOMP-PDP-REST</artifactId> |
| 33 | |
| 34 | <description>ECOMP PDP REST</description> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 35 | <properties> |
| 36 | <springframework.version>4.3.3.RELEASE</springframework.version> |
| 37 | </properties> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 38 | <packaging>war</packaging> |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <artifactId>maven-war-plugin</artifactId> |
| 43 | <version>2.1</version> |
| 44 | <configuration> |
| 45 | <attachClasses>true</attachClasses> |
| 46 | </configuration> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
| 50 | <dependencies> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 51 | <dependency> |
| 52 | <groupId>org.openecomp.policy.engine</groupId> |
| 53 | <artifactId>ECOMP-PDP</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 57 | <groupId>commons-logging</groupId> |
| 58 | <artifactId>commons-logging</artifactId> |
| 59 | <version>1.1.3</version> |
| 60 | <exclusions> |
| 61 | <exclusion> |
| 62 | <groupId>javax.servlet</groupId> |
| 63 | <artifactId>servlet-api</artifactId> |
| 64 | </exclusion> |
| 65 | </exclusions> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>log4j</groupId> |
| 69 | <artifactId>apache-log4j-extras</artifactId> |
| 70 | <version>1.2.17</version> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>commons-io</groupId> |
| 74 | <artifactId>commons-io</artifactId> |
| 75 | <version>2.4</version> |
| 76 | </dependency> |
| 77 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 78 | <groupId>com.google.guava</groupId> |
| 79 | <artifactId>guava</artifactId> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 80 | <version>19.0</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>mysql</groupId> |
| 84 | <artifactId>mysql-connector-java</artifactId> |
| 85 | <version>5.1.30</version> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.mariadb.jdbc</groupId> |
| 89 | <artifactId>mariadb-java-client</artifactId> |
| 90 | <version>1.2.3</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>postgresql</groupId> |
| 94 | <artifactId>postgresql</artifactId> |
| 95 | <version>9.1-901.jdbc4</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <groupId>org.hsqldb</groupId> |
| 99 | <artifactId>hsqldb</artifactId> |
| 100 | <version>2.3.2</version> |
| 101 | </dependency> |
| 102 | <dependency> |
| 103 | <groupId>com.sun.jersey</groupId> |
| 104 | <artifactId>jersey-client</artifactId> |
| 105 | <version>1.18</version> |
| 106 | </dependency> |
| 107 | <dependency> |
| 108 | <groupId>com.sun.jersey</groupId> |
| 109 | <artifactId>jersey-core</artifactId> |
| 110 | <version>1.18</version> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>javax.websocket</groupId> |
| 114 | <artifactId>javax.websocket-api</artifactId> |
| 115 | <version>1.1</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 118 | <dependency> |
| 119 | <groupId>com.att.nsa</groupId> |
| 120 | <artifactId>cambriaClient</artifactId> |
| 121 | <version>0.0.1</version> |
| 122 | <exclusions> |
| 123 | <exclusion> |
| 124 | <artifactId>slf4j-log4j12</artifactId> |
| 125 | <groupId>org.slf4j</groupId> |
| 126 | </exclusion> |
| 127 | </exclusions> |
| 128 | </dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 129 | <dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 130 | <groupId>org.mockito</groupId> |
| 131 | <artifactId>mockito-core</artifactId> |
| 132 | <version>1.9.5</version> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.springframework</groupId> |
| 136 | <artifactId>spring-mock</artifactId> |
| 137 | <version>2.0.8</version> |
| 138 | </dependency> |
| 139 | <dependency> |
| 140 | <groupId>com.mockrunner</groupId> |
| 141 | <artifactId>mockrunner</artifactId> |
| 142 | <version>0.3.1</version> |
| 143 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 144 | <dependency> |
| 145 | <groupId>org.powermock</groupId> |
| 146 | <artifactId>powermock-api-mockito</artifactId> |
| 147 | <version>1.5.6</version> |
| 148 | </dependency> |
| 149 | <dependency> |
| 150 | <groupId>org.powermock</groupId> |
| 151 | <artifactId>powermock-module-junit4</artifactId> |
| 152 | <version>1.5.6</version> |
| 153 | </dependency> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 154 | <dependency> |
| 155 | <groupId>org.springframework</groupId> |
| 156 | <artifactId>spring-core</artifactId> |
| 157 | <version>${springframework.version}</version> |
| 158 | </dependency> |
| 159 | <dependency> |
| 160 | <groupId>org.springframework</groupId> |
| 161 | <artifactId>spring-web</artifactId> |
| 162 | <version>${springframework.version}</version> |
| 163 | </dependency> |
| 164 | <dependency> |
| 165 | <groupId>org.springframework</groupId> |
| 166 | <artifactId>spring-webmvc</artifactId> |
| 167 | <version>${springframework.version}</version> |
| 168 | </dependency> |
| 169 | <dependency> |
| 170 | <groupId>io.springfox</groupId> |
| 171 | <artifactId>springfox-swagger2</artifactId> |
| 172 | <version>2.5.0</version> |
| 173 | <exclusions> |
| 174 | <exclusion> |
| 175 | <groupId>com.fasterxml.jackson.core</groupId> |
| 176 | <artifactId>jackson-annotations</artifactId> |
| 177 | </exclusion> |
| 178 | </exclusions> |
| 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>io.springfox</groupId> |
| 182 | <artifactId>springfox-swagger-ui</artifactId> |
| 183 | <version>2.5.0</version> |
| 184 | </dependency> |
| 185 | <dependency> |
| 186 | <groupId>org.openecomp.policy.engine</groupId> |
| 187 | <artifactId>PolicyEngineAPI</artifactId> |
| 188 | <version>${project.version}</version> |
| 189 | <exclusions> |
| 190 | <exclusion> |
| 191 | <groupId>org.glassfish.tyrus</groupId> |
| 192 | <artifactId>tyrus-client</artifactId> |
| 193 | </exclusion> |
| 194 | <exclusion> |
| 195 | <groupId>org.glassfish.tyrus</groupId> |
| 196 | <artifactId>tyrus-container-grizzly-client</artifactId> |
| 197 | </exclusion> |
| 198 | <exclusion> |
| 199 | <groupId>javax.persistence</groupId> |
| 200 | <artifactId>persistence-api</artifactId> |
| 201 | </exclusion> |
| 202 | <exclusion> |
| 203 | <groupId>com.att.aft</groupId> |
| 204 | <artifactId>dme2</artifactId> |
| 205 | </exclusion> |
| 206 | </exclusions> |
| 207 | </dependency> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 208 | </dependencies> |
ITSERVICES\rb7147 | e0addf5 | 2017-04-25 11:46:00 -0400 | [diff] [blame] | 209 | </project> |