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 | --> |
| 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"> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.policy.engine</groupId> |
| 26 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | dca5220 | 2018-04-13 15:55:51 -0400 | [diff] [blame] | 27 | <version>1.2.1-SNAPSHOT</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 28 | </parent> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 29 | <artifactId>ONAP-PDP-REST</artifactId> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 30 | <description>ONAP PDP REST</description> |
| 31 | <properties> |
Pamela Dragosh | c00bb14 | 2018-04-16 13:30:06 -0400 | [diff] [blame] | 32 | <springframework.version>4.3.15.RELEASE</springframework.version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 33 | </properties> |
| 34 | <packaging>war</packaging> |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <artifactId>maven-war-plugin</artifactId> |
| 39 | <version>2.1</version> |
| 40 | <configuration> |
| 41 | <attachClasses>true</attachClasses> |
| 42 | </configuration> |
| 43 | </plugin> |
| 44 | </plugins> |
| 45 | </build> |
| 46 | <dependencies> |
| 47 | <dependency> |
Pamela Dragosh | b2c2186 | 2018-02-20 13:36:48 -0500 | [diff] [blame] | 48 | <groupId>com.h2database</groupId> |
| 49 | <artifactId>h2</artifactId> |
| 50 | <scope>test</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 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 | <version>19.0</version> |
| 82 | </dependency> |
| 83 | <dependency> |
Tej, Tarun | 98ab708 | 2017-09-19 23:14:33 -0400 | [diff] [blame] | 84 | <groupId>org.mariadb.jdbc</groupId> |
| 85 | <artifactId>mariadb-java-client</artifactId> |
| 86 | <version>2.1.1</version> |
| 87 | </dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>postgresql</groupId> |
| 90 | <artifactId>postgresql</artifactId> |
| 91 | <version>9.1-901.jdbc4</version> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>org.springframework</groupId> |
| 95 | <artifactId>spring-test</artifactId> |
| 96 | <version>${springframework.version}</version> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.awaitility</groupId> |
| 101 | <artifactId>awaitility</artifactId> |
| 102 | <version>3.0.0</version> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>org.hsqldb</groupId> |
| 107 | <artifactId>hsqldb</artifactId> |
| 108 | <version>2.3.2</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>com.sun.jersey</groupId> |
| 112 | <artifactId>jersey-client</artifactId> |
| 113 | <version>1.18</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>com.sun.jersey</groupId> |
| 117 | <artifactId>jersey-core</artifactId> |
| 118 | <version>1.18</version> |
| 119 | </dependency> |
| 120 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 121 | <groupId>javax.websocket</groupId> |
| 122 | <artifactId>javax.websocket-api</artifactId> |
| 123 | <version>1.1</version> |
| 124 | <scope>provided</scope> |
| 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>com.att.nsa</groupId> |
| 128 | <artifactId>cambriaClient</artifactId> |
| 129 | <version>0.0.1</version> |
| 130 | <exclusions> |
| 131 | <exclusion> |
| 132 | <artifactId>slf4j-log4j12</artifactId> |
| 133 | <groupId>org.slf4j</groupId> |
| 134 | </exclusion> |
| 135 | </exclusions> |
| 136 | </dependency> |
| 137 | <dependency> |
liamfallon | 45fe54d | 2018-03-14 22:25:08 +0000 | [diff] [blame] | 138 | <groupId>com.att.aft</groupId> |
| 139 | <artifactId>dme2</artifactId> |
| 140 | <version>3.1.200-oss</version> |
| 141 | <scope>test</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 144 | <groupId>org.springframework</groupId> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 145 | <artifactId>spring-core</artifactId> |
| 146 | <version>${springframework.version}</version> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.springframework</groupId> |
| 150 | <artifactId>spring-web</artifactId> |
| 151 | <version>${springframework.version}</version> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>org.springframework</groupId> |
| 155 | <artifactId>spring-webmvc</artifactId> |
| 156 | <version>${springframework.version}</version> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>io.springfox</groupId> |
| 160 | <artifactId>springfox-swagger2</artifactId> |
rb7147 | 9450c8d | 2018-02-16 13:46:06 -0500 | [diff] [blame] | 161 | <version>2.5.0</version> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 162 | <exclusions> |
| 163 | <exclusion> |
| 164 | <groupId>com.fasterxml.jackson.core</groupId> |
| 165 | <artifactId>jackson-annotations</artifactId> |
| 166 | </exclusion> |
| 167 | </exclusions> |
| 168 | </dependency> |
| 169 | <dependency> |
rb7147 | 9450c8d | 2018-02-16 13:46:06 -0500 | [diff] [blame] | 170 | <groupId>io.springfox</groupId> |
| 171 | <artifactId>springfox-swagger-ui</artifactId> |
Pamela Dragosh | 4827631 | 2018-03-05 20:34:18 -0500 | [diff] [blame] | 172 | <version>2.7.0</version> |
rb7147 | 9450c8d | 2018-02-16 13:46:06 -0500 | [diff] [blame] | 173 | </dependency> |
| 174 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 175 | <groupId>org.onap.policy.engine</groupId> |
| 176 | <artifactId>PolicyEngineAPI</artifactId> |
| 177 | <version>${project.version}</version> |
| 178 | <exclusions> |
| 179 | <exclusion> |
| 180 | <groupId>org.glassfish.tyrus</groupId> |
| 181 | <artifactId>tyrus-client</artifactId> |
| 182 | </exclusion> |
| 183 | <exclusion> |
| 184 | <groupId>org.glassfish.tyrus</groupId> |
| 185 | <artifactId>tyrus-container-grizzly-client</artifactId> |
| 186 | </exclusion> |
| 187 | <exclusion> |
| 188 | <groupId>javax.persistence</groupId> |
| 189 | <artifactId>persistence-api</artifactId> |
| 190 | </exclusion> |
rb7147 | 92a628e | 2017-09-21 13:51:10 -0400 | [diff] [blame] | 191 | <exclusion> |
| 192 | <groupId>com.att.aft</groupId> |
| 193 | <artifactId>dme2</artifactId> |
| 194 | </exclusion> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 195 | </exclusions> |
| 196 | </dependency> |
| 197 | </dependencies> |
Pamela Dragosh | bb9c33b | 2017-11-07 21:14:49 -0500 | [diff] [blame] | 198 | </project> |