Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP Policy Engine |
| 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [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 |
| 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 | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | 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 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.engine</groupId> |
| 27 | <artifactId>PolicyEngineSuite</artifactId> |
| 28 | <version>1.3.0-SNAPSHOT</version> |
| 29 | </parent> |
| 30 | <artifactId>ONAP-PDP-REST</artifactId> |
| 31 | <description>ONAP PDP REST</description> |
| 32 | <properties> |
| 33 | <springframework.version>4.3.15.RELEASE</springframework.version> |
| 34 | </properties> |
| 35 | <packaging>war</packaging> |
| 36 | <build> |
| 37 | <plugins> |
| 38 | <plugin> |
| 39 | <artifactId>maven-war-plugin</artifactId> |
| 40 | <configuration> |
| 41 | <attachClasses>true</attachClasses> |
| 42 | </configuration> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | <dependencies> |
| 47 | <dependency> |
| 48 | <groupId>com.h2database</groupId> |
| 49 | <artifactId>h2</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.policy.engine</groupId> |
| 54 | <artifactId>ONAP-PDP</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>commons-logging</groupId> |
| 59 | <artifactId>commons-logging</artifactId> |
| 60 | <version>1.1.3</version> |
| 61 | <exclusions> |
| 62 | <exclusion> |
| 63 | <groupId>javax.servlet</groupId> |
| 64 | <artifactId>servlet-api</artifactId> |
| 65 | </exclusion> |
| 66 | </exclusions> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>log4j</groupId> |
| 70 | <artifactId>apache-log4j-extras</artifactId> |
| 71 | <version>1.2.17</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>commons-io</groupId> |
| 75 | <artifactId>commons-io</artifactId> |
| 76 | <version>2.4</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>com.google.guava</groupId> |
| 80 | <artifactId>guava</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
Tej, Tarun | 98ab708 | 2017-09-19 23:14:33 -0400 | [diff] [blame] | 83 | <groupId>org.mariadb.jdbc</groupId> |
| 84 | <artifactId>mariadb-java-client</artifactId> |
| 85 | <version>2.1.1</version> |
| 86 | </dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 87 | <dependency> |
| 88 | <groupId>postgresql</groupId> |
| 89 | <artifactId>postgresql</artifactId> |
| 90 | <version>9.1-901.jdbc4</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.springframework</groupId> |
| 94 | <artifactId>spring-test</artifactId> |
| 95 | <version>${springframework.version}</version> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.awaitility</groupId> |
| 100 | <artifactId>awaitility</artifactId> |
| 101 | <version>3.0.0</version> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.hsqldb</groupId> |
| 106 | <artifactId>hsqldb</artifactId> |
| 107 | <version>2.3.2</version> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>com.sun.jersey</groupId> |
| 111 | <artifactId>jersey-client</artifactId> |
| 112 | <version>1.18</version> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>com.sun.jersey</groupId> |
| 116 | <artifactId>jersey-core</artifactId> |
| 117 | <version>1.18</version> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>javax.websocket</groupId> |
| 121 | <artifactId>javax.websocket-api</artifactId> |
| 122 | <version>1.1</version> |
| 123 | <scope>provided</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>com.att.nsa</groupId> |
| 127 | <artifactId>cambriaClient</artifactId> |
| 128 | <exclusions> |
| 129 | <exclusion> |
| 130 | <artifactId>slf4j-log4j12</artifactId> |
| 131 | <groupId>org.slf4j</groupId> |
| 132 | </exclusion> |
| 133 | </exclusions> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>com.att.aft</groupId> |
| 137 | <artifactId>dme2</artifactId> |
| 138 | <version>3.1.200-oss</version> |
| 139 | <scope>test</scope> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>org.springframework</groupId> |
| 143 | <artifactId>spring-core</artifactId> |
| 144 | <version>${springframework.version}</version> |
| 145 | </dependency> |
| 146 | <dependency> |
| 147 | <groupId>org.springframework</groupId> |
| 148 | <artifactId>spring-web</artifactId> |
| 149 | <version>${springframework.version}</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.springframework</groupId> |
| 153 | <artifactId>spring-webmvc</artifactId> |
| 154 | <version>${springframework.version}</version> |
| 155 | </dependency> |
| 156 | <dependency> |
| 157 | <groupId>io.springfox</groupId> |
| 158 | <artifactId>springfox-swagger2</artifactId> |
| 159 | <version>2.5.0</version> |
| 160 | <exclusions> |
| 161 | <exclusion> |
| 162 | <groupId>com.fasterxml.jackson.core</groupId> |
| 163 | <artifactId>jackson-annotations</artifactId> |
| 164 | </exclusion> |
| 165 | </exclusions> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>io.springfox</groupId> |
| 169 | <artifactId>springfox-swagger-ui</artifactId> |
| 170 | <version>2.7.0</version> |
| 171 | </dependency> |
| 172 | <dependency> |
rb7147 | 7fd58e9 | 2018-09-04 14:16:04 -0400 | [diff] [blame^] | 173 | <groupId>org.apache.commons</groupId> |
| 174 | <artifactId>commons-text</artifactId> |
| 175 | <version>1.4</version> |
| 176 | </dependency> |
| 177 | <dependency> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 178 | <groupId>org.onap.policy.engine</groupId> |
| 179 | <artifactId>PolicyEngineAPI</artifactId> |
| 180 | <version>${project.version}</version> |
| 181 | <exclusions> |
| 182 | <exclusion> |
| 183 | <groupId>org.glassfish.tyrus</groupId> |
| 184 | <artifactId>tyrus-client</artifactId> |
| 185 | </exclusion> |
| 186 | <exclusion> |
| 187 | <groupId>org.glassfish.tyrus</groupId> |
| 188 | <artifactId>tyrus-container-grizzly-client</artifactId> |
| 189 | </exclusion> |
| 190 | <exclusion> |
| 191 | <groupId>javax.persistence</groupId> |
| 192 | <artifactId>persistence-api</artifactId> |
| 193 | </exclusion> |
| 194 | <exclusion> |
| 195 | <groupId>com.att.aft</groupId> |
| 196 | <artifactId>dme2</artifactId> |
| 197 | </exclusion> |
| 198 | </exclusions> |
| 199 | </dependency> |
| 200 | </dependencies> |
Pamela Dragosh | bb9c33b | 2017-11-07 21:14:49 -0500 | [diff] [blame] | 201 | </project> |