ONAP log files consolidation
[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.2.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.glassfish.tyrus</groupId>
64                         <artifactId>tyrus-client</artifactId>
65                         <version>1.13</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.glassfish.tyrus</groupId>
69                         <artifactId>tyrus-container-grizzly-client</artifactId>
70                         <version>1.13</version>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.springframework</groupId>
74                         <artifactId>spring-webmvc</artifactId>
75                         <version>4.3.3.RELEASE</version>
76                 </dependency>
77                 <dependency>
78                     <groupId>com.google.code.gson</groupId>
79                 <artifactId>gson</artifactId>
80                 <version>2.8.0</version>
81                 </dependency>
82                 <dependency>
83                         <groupId>log4j</groupId>
84                         <artifactId>log4j</artifactId>
85                         <version>1.2.17</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>com.att.nsa</groupId>
89                         <artifactId>cambriaClient</artifactId>
90                         <version>0.0.1</version>
91                         <exclusions>
92                                 <exclusion>
93                                         <groupId>org.slf4j</groupId>
94                                         <artifactId>slf4j-log4j12</artifactId>
95                                 </exclusion>
96                         </exclusions>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.onap.policy.engine</groupId>
100                         <artifactId>ONAP-XACML</artifactId>
101                         <version>${project.version}</version>
102                 </dependency>
103         </dependencies>
104         <build>
105                 <plugins>
106                         <plugin>
107                                 <groupId>org.apache.maven.plugins</groupId>
108                                 <artifactId>maven-compiler-plugin</artifactId>
109                                 <version>3.2</version>
110                                 <configuration>
111                                         <source>1.8</source>
112                                         <target>1.8</target>
113                                 </configuration>
114                         </plugin>
115                         <plugin>
116                                 <!-- Dependency version for Clients who need it -->
117                                 <groupId>org.apache.maven.plugins</groupId>
118                                 <artifactId>maven-assembly-plugin</artifactId>
119                                 <version>2.2</version>
120                                 <configuration>
121                                         <descriptorRefs>
122                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
123                                         </descriptorRefs>
124                                 </configuration>
125                                 <executions>
126                                         <execution>
127                                                 <id>make-assembly</id>
128                                                 <phase>package</phase>
129                                                 <goals>
130                                                         <goal>single</goal>
131                                                 </goals>
132                                         </execution>
133                                 </executions>
134                         </plugin>
135                 </plugins>
136         </build>
137 </project>