Merge "Copy policy-endpoints from drools-pdp to common"
[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         <parent>
26                 <groupId>org.onap.policy.engine</groupId>
27                 <artifactId>PolicyEngineSuite</artifactId>
28                 <version>1.3.0-SNAPSHOT</version>
29         </parent>
30         <artifactId>PolicyEngineAPI</artifactId>
31         <dependencies>
32                 <dependency>
33                         <groupId>org.glassfish</groupId>
34                         <artifactId>javax.json</artifactId>
35                         <version>1.0.4</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>org.apache.httpcomponents</groupId>
39                         <artifactId>httpclient</artifactId>
40                         <version>${httpclient.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>commons-io</groupId>
44                         <artifactId>commons-io</artifactId>
45                         <version>2.4</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>com.google.guava</groupId>
49                         <artifactId>guava</artifactId>
50                         <version>14.0.1</version>
51                 </dependency>
52                 <dependency>
53                 <groupId>commons-fileupload</groupId>
54                 <artifactId>commons-fileupload</artifactId>
55                 <version>${commons.fileupload.version}</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>javax.websocket</groupId>
59                         <artifactId>javax.websocket-api</artifactId>
60                         <version>1.1</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.java-websocket</groupId>
64                         <artifactId>Java-WebSocket</artifactId>
65                         <version>1.3.8</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.springframework</groupId>
69                         <artifactId>spring-webmvc</artifactId>
70                         <version>4.3.15.RELEASE</version>
71                 </dependency>
72                 <dependency>
73                     <groupId>com.google.code.gson</groupId>
74                 <artifactId>gson</artifactId>
75                 <version>2.8.0</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>log4j</groupId>
79                         <artifactId>log4j</artifactId>
80                         <version>1.2.17</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>com.att.nsa</groupId>
84                         <artifactId>cambriaClient</artifactId>
85                         <version>0.0.1</version>
86                         <exclusions>
87                                 <exclusion>
88                                         <groupId>org.slf4j</groupId>
89                                         <artifactId>slf4j-log4j12</artifactId>
90                                 </exclusion>
91                         </exclusions>
92                 </dependency>
93                 <dependency>
94                         <groupId>org.onap.policy.engine</groupId>
95                         <artifactId>ONAP-XACML</artifactId>
96                         <version>${project.version}</version>
97                 </dependency>
98         </dependencies>
99         <build>
100                 <plugins>
101                         <plugin>
102                                 <groupId>org.apache.maven.plugins</groupId>
103                                 <artifactId>maven-compiler-plugin</artifactId>
104                                 <version>3.2</version>
105                                 <configuration>
106                                         <source>1.8</source>
107                                         <target>1.8</target>
108                                 </configuration>
109                         </plugin>
110                         <plugin>
111                                 <!-- Dependency version for Clients who need it -->
112                                 <groupId>org.apache.maven.plugins</groupId>
113                                 <artifactId>maven-assembly-plugin</artifactId>
114                                 <version>2.2</version>
115                                 <configuration>
116                                         <descriptorRefs>
117                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
118                                         </descriptorRefs>
119                                 </configuration>
120                                 <executions>
121                                         <execution>
122                                                 <id>make-assembly</id>
123                                                 <phase>package</phase>
124                                                 <goals>
125                                                         <goal>single</goal>
126                                                 </goals>
127                                         </execution>
128                                 </executions>
129                         </plugin>
130                 </plugins>
131         </build>
132 </project>