Initial OpenECOMP policy/engine commit
[policy/engine.git] / ECOMP-TEST / pom.xml
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   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0" 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
25         <modelVersion>4.0.0</modelVersion>
26
27         <parent>
28                 <groupId>org.openecomp.policy.engine</groupId>
29                 <artifactId>PolicyEngineSuite</artifactId>
30                 <version>1.0.0-SNAPSHOT</version>
31         </parent>       
32         
33         <groupId>org.openecomp.policy.engine</groupId>
34         <artifactId>ECOMP-TEST</artifactId>
35         
36         <description>ECOMP TEST</description>
37          
38         <packaging>jar</packaging>
39
40         <dependencies>
41                 <dependency>
42                         <groupId>org.apache.httpcomponents</groupId>
43                         <artifactId>httpclient</artifactId>
44                         <version>4.2.4</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>junit</groupId>
48                         <artifactId>junit</artifactId>
49                         <version>4.11</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>commons-codec</groupId>
53                         <artifactId>commons-codec</artifactId>
54                         <version>1.5</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>commons-cli</groupId>
58                         <artifactId>commons-cli</artifactId>
59                         <version>1.2</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>commons-io</groupId>
74                         <artifactId>commons-io</artifactId>
75                         <version>2.4</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>com.fasterxml.jackson.core</groupId>
79                         <artifactId>jackson-databind</artifactId>
80                         <version>2.3.0-rc1</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>com.google.guava</groupId>
84                         <artifactId>guava</artifactId>
85                         <version>14.0.1</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>org.openecomp.policy.engine</groupId>
89                         <artifactId>ECOMP-PDP-REST</artifactId>
90                         <version>${project.version}</version>
91                         <classifier>classes</classifier>
92                         <scope>test</scope>
93                 </dependency>
94                 <dependency>
95                         <groupId>org.openecomp.policy.engine</groupId>
96                         <artifactId>ECOMP-PAP-REST</artifactId>
97                         <version>${project.version}</version>
98                         <classifier>classes</classifier>
99                         <scope>test</scope>
100                 </dependency>           
101                 <dependency>
102                         <groupId>mysql</groupId>
103                         <artifactId>mysql-connector-java</artifactId>
104                         <version>5.1.30</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>org.mariadb.jdbc</groupId>
108                         <artifactId>mariadb-java-client</artifactId>
109                         <version>1.2.3</version>
110                 </dependency>           
111                 <dependency>
112                         <groupId>postgresql</groupId>
113                         <artifactId>postgresql</artifactId>
114                         <version>9.1-901.jdbc4</version>
115                 </dependency>
116                 <dependency>
117                         <groupId>org.hsqldb</groupId>
118                         <artifactId>hsqldb</artifactId>
119                         <version>2.3.2</version>
120                 </dependency>
121                 <dependency>
122                         <groupId>org.mockito</groupId>
123                         <artifactId>mockito-core</artifactId>
124                         <version>1.9.5</version>
125                 </dependency>     
126                 <dependency>
127                         <groupId>org.springframework</groupId>
128                         <artifactId>spring-mock</artifactId>
129                         <version>2.0.8</version>
130                 </dependency>
131                 <dependency>
132                         <groupId>com.mockrunner</groupId>
133                         <artifactId>mockrunner</artifactId>
134                         <version>0.3.1</version>
135                 </dependency>
136                                 <dependency>
137                         <groupId>com.h2database</groupId>
138                         <artifactId>h2</artifactId>
139                         <version>[1.4.186,)</version>
140                 </dependency>
141                 <dependency>
142                         <groupId>org.eclipse.persistence</groupId>
143                         <artifactId>javax.persistence</artifactId>
144                         <version>2.1.0</version>
145                 </dependency>
146                 <dependency>
147             <groupId>javax.persistence</groupId>
148             <artifactId>persistence-api</artifactId>
149             <version>1.0.2</version>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.eclipse.persistence</groupId>
153                         <artifactId>eclipselink</artifactId>
154                         <version>2.5.2</version>
155                 </dependency>
156         </dependencies>
157 </project>