Merge "Change ng-click to ng-change"
[policy/engine.git] / ONAP-PDP-REST / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
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.onap.policy.engine</groupId>
28                 <artifactId>PolicyEngineSuite</artifactId>
29                 <version>1.2.0-SNAPSHOT</version>
30         </parent>
31
32         <artifactId>ONAP-PDP-REST</artifactId>
33
34         <description>ONAP PDP REST</description>
35         <properties>
36                 <springframework.version>4.3.3.RELEASE</springframework.version>
37         </properties>
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>
51                 <dependency>
52                         <groupId>com.h2database</groupId>
53                         <artifactId>h2</artifactId>
54                         <scope>test</scope>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.onap.policy.engine</groupId>
58                         <artifactId>ONAP-PDP</artifactId>
59                         <version>${project.version}</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>commons-logging</groupId>
63                         <artifactId>commons-logging</artifactId>
64                         <version>1.1.3</version>
65                         <exclusions>
66                                 <exclusion>
67                                         <groupId>javax.servlet</groupId>
68                                         <artifactId>servlet-api</artifactId>
69                                 </exclusion>
70                         </exclusions>
71                 </dependency>
72                 <dependency>
73                         <groupId>log4j</groupId>
74                         <artifactId>apache-log4j-extras</artifactId>
75                         <version>1.2.17</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>commons-io</groupId>
79                         <artifactId>commons-io</artifactId>
80                         <version>2.4</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>com.google.guava</groupId>
84                         <artifactId>guava</artifactId>
85                         <version>19.0</version>
86                 </dependency>
87                 <dependency>
88             <groupId>org.mariadb.jdbc</groupId>
89             <artifactId>mariadb-java-client</artifactId>
90             <version>2.1.1</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.springframework</groupId>
99                         <artifactId>spring-test</artifactId>
100                         <version>${springframework.version}</version>
101                         <scope>test</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.awaitility</groupId>
105                         <artifactId>awaitility</artifactId>
106                         <version>3.0.0</version>
107                         <scope>test</scope>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.hsqldb</groupId>
111                         <artifactId>hsqldb</artifactId>
112                         <version>2.3.2</version>
113                 </dependency>
114                 <dependency>
115                         <groupId>com.sun.jersey</groupId>
116                         <artifactId>jersey-client</artifactId>
117                         <version>1.18</version>
118                 </dependency>
119                 <dependency>
120                         <groupId>com.sun.jersey</groupId>
121                         <artifactId>jersey-core</artifactId>
122                         <version>1.18</version>
123                 </dependency>
124                 <dependency>
125                         <groupId>junit</groupId>
126                         <artifactId>junit</artifactId>
127                         <version>4.12</version>
128                         <scope>test</scope>
129                 </dependency>
130                 <dependency>
131                         <groupId>javax.websocket</groupId>
132                         <artifactId>javax.websocket-api</artifactId>
133                         <version>1.1</version>
134                         <scope>provided</scope>
135                 </dependency>
136                 <dependency>
137                         <groupId>com.att.nsa</groupId>
138                         <artifactId>cambriaClient</artifactId>
139                         <version>0.0.1</version>
140                         <exclusions>
141                                 <exclusion>
142                                         <artifactId>slf4j-log4j12</artifactId>
143                                         <groupId>org.slf4j</groupId>
144                                 </exclusion>
145                         </exclusions>
146                 </dependency>
147                 <dependency>
148                         <groupId>org.mockito</groupId>
149                         <artifactId>mockito-core</artifactId>
150                         <version>1.9.5</version>
151                 </dependency>
152                 <dependency>
153                         <groupId>org.springframework</groupId>
154                         <artifactId>spring-mock</artifactId>
155                         <version>2.0.8</version>
156                 </dependency>
157                 <dependency>
158                         <groupId>com.mockrunner</groupId>
159                         <artifactId>mockrunner</artifactId>
160                         <version>0.3.1</version>
161                 </dependency>
162                 <dependency>
163                         <groupId>org.powermock</groupId>
164                         <artifactId>powermock-api-mockito</artifactId>
165                         <version>1.5.6</version>
166                 </dependency>
167                 <dependency>
168                         <groupId>org.powermock</groupId>
169                         <artifactId>powermock-module-junit4</artifactId>
170                         <version>1.5.6</version>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.springframework</groupId>
174                         <artifactId>spring-core</artifactId>
175                         <version>${springframework.version}</version>
176                 </dependency>
177                 <dependency>
178                         <groupId>org.springframework</groupId>
179                         <artifactId>spring-web</artifactId>
180                         <version>${springframework.version}</version>
181                 </dependency>
182                 <dependency>
183                         <groupId>org.springframework</groupId>
184                         <artifactId>spring-webmvc</artifactId>
185                         <version>${springframework.version}</version>
186                 </dependency>
187                 <dependency>
188                         <groupId>io.springfox</groupId>
189                         <artifactId>springfox-swagger2</artifactId>
190                         <version>2.5.0</version>
191                         <exclusions>
192                                 <exclusion>
193                                         <groupId>com.fasterxml.jackson.core</groupId>
194                                         <artifactId>jackson-annotations</artifactId>
195                                 </exclusion>
196                         </exclusions>
197                 </dependency>
198                 <dependency>
199                         <groupId>io.springfox</groupId>
200                         <artifactId>springfox-swagger-ui</artifactId>
201                         <version>2.7.0</version>
202                 </dependency>
203                 <dependency>
204                         <groupId>org.onap.policy.engine</groupId>
205                         <artifactId>PolicyEngineAPI</artifactId>
206                         <version>${project.version}</version>
207                         <exclusions>
208                                 <exclusion>
209                                         <groupId>org.glassfish.tyrus</groupId>
210                                         <artifactId>tyrus-client</artifactId>
211                                 </exclusion>
212                                 <exclusion>
213                                         <groupId>org.glassfish.tyrus</groupId>
214                                         <artifactId>tyrus-container-grizzly-client</artifactId>
215                                 </exclusion>
216                                 <exclusion>
217                                         <groupId>javax.persistence</groupId>
218                                         <artifactId>persistence-api</artifactId>
219                                 </exclusion>
220                                 <exclusion>
221                                         <groupId>com.att.aft</groupId>
222                                         <artifactId>dme2</artifactId>
223                                 </exclusion>
224                         </exclusions>
225                 </dependency>
226         </dependencies>
227 </project>