blob: c28df738d8e96495fc56a50c9cfa5fba96f079d9 [file] [log] [blame]
Guo Ruijing073cc182017-07-31 08:47:35 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP Policy Engine
5 ================================================================================
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -05006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Guo Ruijing073cc182017-07-31 08:47:35 +00007 ================================================================================
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 -->
liamfallon4ddca8b2018-10-31 17:17:01 +000021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.engine</groupId>
25 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragoshe1b6c5e2019-02-26 07:45:26 -050026 <version>1.3.6-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040027 </parent>
28 <artifactId>ONAP-PDP-REST</artifactId>
29 <description>ONAP PDP REST</description>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040030 <packaging>war</packaging>
31 <build>
32 <plugins>
33 <plugin>
34 <artifactId>maven-war-plugin</artifactId>
35 <configuration>
36 <attachClasses>true</attachClasses>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>com.h2database</groupId>
44 <artifactId>h2</artifactId>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.policy.engine</groupId>
49 <artifactId>ONAP-PDP</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>commons-logging</groupId>
54 <artifactId>commons-logging</artifactId>
55 <version>1.1.3</version>
56 <exclusions>
57 <exclusion>
58 <groupId>javax.servlet</groupId>
59 <artifactId>servlet-api</artifactId>
60 </exclusion>
61 </exclusions>
62 </dependency>
63 <dependency>
64 <groupId>log4j</groupId>
65 <artifactId>apache-log4j-extras</artifactId>
66 <version>1.2.17</version>
67 </dependency>
68 <dependency>
69 <groupId>commons-io</groupId>
70 <artifactId>commons-io</artifactId>
71 <version>2.4</version>
72 </dependency>
73 <dependency>
74 <groupId>com.google.guava</groupId>
75 <artifactId>guava</artifactId>
76 </dependency>
77 <dependency>
Tej, Tarun98ab7082017-09-19 23:14:33 -040078 <groupId>org.mariadb.jdbc</groupId>
79 <artifactId>mariadb-java-client</artifactId>
Tej, Tarun98ab7082017-09-19 23:14:33 -040080 </dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040081 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040082 <groupId>org.springframework</groupId>
83 <artifactId>spring-test</artifactId>
84 <version>${springframework.version}</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.awaitility</groupId>
89 <artifactId>awaitility</artifactId>
90 <version>3.0.0</version>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.hsqldb</groupId>
95 <artifactId>hsqldb</artifactId>
96 <version>2.3.2</version>
97 </dependency>
98 <dependency>
99 <groupId>com.sun.jersey</groupId>
100 <artifactId>jersey-client</artifactId>
101 <version>1.18</version>
102 </dependency>
103 <dependency>
104 <groupId>com.sun.jersey</groupId>
105 <artifactId>jersey-core</artifactId>
106 <version>1.18</version>
107 </dependency>
108 <dependency>
109 <groupId>javax.websocket</groupId>
110 <artifactId>javax.websocket-api</artifactId>
111 <version>1.1</version>
112 <scope>provided</scope>
113 </dependency>
114 <dependency>
115 <groupId>com.att.nsa</groupId>
116 <artifactId>cambriaClient</artifactId>
117 <exclusions>
118 <exclusion>
119 <artifactId>slf4j-log4j12</artifactId>
120 <groupId>org.slf4j</groupId>
121 </exclusion>
122 </exclusions>
123 </dependency>
124 <dependency>
125 <groupId>com.att.aft</groupId>
126 <artifactId>dme2</artifactId>
127 <version>3.1.200-oss</version>
128 <scope>test</scope>
129 </dependency>
130 <dependency>
131 <groupId>org.springframework</groupId>
132 <artifactId>spring-core</artifactId>
133 <version>${springframework.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>org.springframework</groupId>
137 <artifactId>spring-web</artifactId>
138 <version>${springframework.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework</groupId>
142 <artifactId>spring-webmvc</artifactId>
143 <version>${springframework.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>io.springfox</groupId>
147 <artifactId>springfox-swagger2</artifactId>
148 <version>2.5.0</version>
149 <exclusions>
150 <exclusion>
151 <groupId>com.fasterxml.jackson.core</groupId>
152 <artifactId>jackson-annotations</artifactId>
153 </exclusion>
154 </exclusions>
155 </dependency>
156 <dependency>
157 <groupId>io.springfox</groupId>
158 <artifactId>springfox-swagger-ui</artifactId>
159 <version>2.7.0</version>
160 </dependency>
161 <dependency>
rb71477fd58e92018-09-04 14:16:04 -0400162 <groupId>org.apache.commons</groupId>
163 <artifactId>commons-text</artifactId>
164 <version>1.4</version>
165 </dependency>
166 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -0400167 <groupId>org.onap.policy.engine</groupId>
168 <artifactId>PolicyEngineAPI</artifactId>
169 <version>${project.version}</version>
170 <exclusions>
171 <exclusion>
172 <groupId>org.glassfish.tyrus</groupId>
173 <artifactId>tyrus-client</artifactId>
174 </exclusion>
175 <exclusion>
176 <groupId>org.glassfish.tyrus</groupId>
177 <artifactId>tyrus-container-grizzly-client</artifactId>
178 </exclusion>
179 <exclusion>
180 <groupId>javax.persistence</groupId>
181 <artifactId>persistence-api</artifactId>
182 </exclusion>
183 <exclusion>
184 <groupId>com.att.aft</groupId>
185 <artifactId>dme2</artifactId>
186 </exclusion>
187 </exclusions>
188 </dependency>
189 </dependencies>
Pamela Dragoshbb9c33b2017-11-07 21:14:49 -0500190</project>