6ffef75942298fb9e387c39daf1495e4acf708c4
[policy/engine.git] / PolicyEngineAPI / 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
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/xsd/maven-4.0.0.xsd">
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>PolicyEngineAPI</artifactId>
33         <dependencies>
34                 <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito -->
35                 <dependency>
36                 <groupId>org.powermock</groupId>
37                 <artifactId>powermock-api-mockito</artifactId>
38                 <version>1.7.3</version>
39                 <scope>test</scope>
40                 </dependency>
41                 <dependency>
42             <groupId>org.powermock</groupId>
43             <artifactId>powermock-module-junit4</artifactId>
44             <version>1.7.3</version>
45             <scope>test</scope>
46         </dependency>
47                 <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
48                 <dependency>
49                     <groupId>org.mockito</groupId>
50                     <artifactId>mockito-all</artifactId>
51                     <version>1.10.19</version>
52                     <scope>test</scope>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.fasterxml.jackson.core</groupId>
56                         <artifactId>jackson-databind</artifactId>
57                         <version>${jackson.version}</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>org.glassfish</groupId>
61                         <artifactId>javax.json</artifactId>
62                         <version>1.0.4</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.apache.httpcomponents</groupId>
66                         <artifactId>httpclient</artifactId>
67                         <version>${httpclient.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>commons-io</groupId>
71                         <artifactId>commons-io</artifactId>
72                         <version>2.4</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>com.google.guava</groupId>
76                         <artifactId>guava</artifactId>
77                         <version>14.0.1</version>
78                 </dependency>
79                 <dependency>
80                 <groupId>commons-fileupload</groupId>
81                 <artifactId>commons-fileupload</artifactId>
82                 <version>${commons.fileupload.version}</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>junit</groupId>
86                         <artifactId>junit</artifactId>
87                         <version>4.11</version>
88                         <scope>test</scope>
89                 </dependency>
90                 <dependency>
91                         <groupId>javax.websocket</groupId>
92                         <artifactId>javax.websocket-api</artifactId>
93                         <version>1.1</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.glassfish.tyrus</groupId>
97                         <artifactId>tyrus-client</artifactId>
98                         <version>1.13</version>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.glassfish.tyrus</groupId>
102                         <artifactId>tyrus-container-grizzly-client</artifactId>
103                         <version>1.13</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.springframework</groupId>
107                         <artifactId>spring-webmvc</artifactId>
108                         <version>4.3.3.RELEASE</version>
109                 </dependency>
110                 <dependency>
111                     <groupId>com.google.code.gson</groupId>
112                 <artifactId>gson</artifactId>
113                 <version>2.8.0</version>
114                 </dependency>
115                 <dependency>
116                         <groupId>log4j</groupId>
117                         <artifactId>log4j</artifactId>
118                         <version>1.2.17</version>
119                 </dependency>
120                 <dependency>
121                         <groupId>com.att.nsa</groupId>
122                         <artifactId>cambriaClient</artifactId>
123                         <version>0.0.1</version>
124                         <exclusions>
125                                 <exclusion>
126                                         <groupId>org.slf4j</groupId>
127                                         <artifactId>slf4j-log4j12</artifactId>
128                                 </exclusion>
129                         </exclusions>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.onap.policy.engine</groupId>
133                         <artifactId>ONAP-XACML</artifactId>
134                         <version>${project.version}</version>
135                         <exclusions>
136                                 <exclusion>
137                                         <groupId>org.powermock</groupId>
138                                         <artifactId>powermock-api-mockito</artifactId>
139                                 </exclusion>
140                         </exclusions>
141                 </dependency>
142         </dependencies>
143         <build>
144                 <plugins>
145                         <plugin>
146                                 <groupId>org.apache.maven.plugins</groupId>
147                                 <artifactId>maven-compiler-plugin</artifactId>
148                                 <version>3.2</version>
149                                 <configuration>
150                                         <source>1.8</source>
151                                         <target>1.8</target>
152                                 </configuration>
153                         </plugin>
154                         <plugin>
155                                 <!-- Dependency version for Clients who need it -->
156                                 <groupId>org.apache.maven.plugins</groupId>
157                                 <artifactId>maven-assembly-plugin</artifactId>
158                                 <version>2.2</version>
159                                 <configuration>
160                                         <descriptorRefs>
161                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
162                                         </descriptorRefs>
163                                 </configuration>
164                                 <executions>
165                                         <execution>
166                                                 <id>make-assembly</id>
167                                                 <phase>package</phase>
168                                                 <goals>
169                                                         <goal>single</goal>
170                                                 </goals>
171                                         </execution>
172                                 </executions>
173                         </plugin>
174                 </plugins>
175         </build>
176 </project>