Merge "Update docker tag convention"
[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>com.fasterxml.jackson.core</groupId>
34                         <artifactId>jackson-databind</artifactId>
35                         <version>${jackson.version}</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>org.glassfish</groupId>
39                         <artifactId>javax.json</artifactId>
40                         <version>1.0.4</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.apache.httpcomponents</groupId>
44                         <artifactId>httpclient</artifactId>
45                         <version>${httpclient.version}</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>commons-io</groupId>
49                         <artifactId>commons-io</artifactId>
50                         <version>2.4</version>
51                 </dependency>
52                 <dependency>
53                         <groupId>com.google.guava</groupId>
54                         <artifactId>guava</artifactId>
55                         <version>14.0.1</version>
56                 </dependency>
57                 <dependency>
58                 <groupId>commons-fileupload</groupId>
59                 <artifactId>commons-fileupload</artifactId>
60                 <version>${commons.fileupload.version}</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>javax.websocket</groupId>
64                         <artifactId>javax.websocket-api</artifactId>
65                         <version>1.1</version>
66                 </dependency>
67                 <dependency>
68                         <groupId>org.glassfish.tyrus</groupId>
69                         <artifactId>tyrus-client</artifactId>
70                         <version>1.13</version>
71                 </dependency>
72                 <dependency>
73                         <groupId>org.glassfish.tyrus</groupId>
74                         <artifactId>tyrus-container-grizzly-client</artifactId>
75                         <version>1.13</version>
76                 </dependency>
77                 <dependency>
78                         <groupId>org.springframework</groupId>
79                         <artifactId>spring-webmvc</artifactId>
80                         <version>4.3.3.RELEASE</version>
81                 </dependency>
82                 <dependency>
83                     <groupId>com.google.code.gson</groupId>
84                 <artifactId>gson</artifactId>
85                 <version>2.8.0</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>log4j</groupId>
89                         <artifactId>log4j</artifactId>
90                         <version>1.2.17</version>
91                 </dependency>
92                 <dependency>
93                         <groupId>com.att.nsa</groupId>
94                         <artifactId>cambriaClient</artifactId>
95                         <version>0.0.1</version>
96                         <exclusions>
97                                 <exclusion>
98                                         <groupId>org.slf4j</groupId>
99                                         <artifactId>slf4j-log4j12</artifactId>
100                                 </exclusion>
101                         </exclusions>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.onap.policy.engine</groupId>
105                         <artifactId>ONAP-XACML</artifactId>
106                         <version>${project.version}</version>
107                 </dependency>
108         </dependencies>
109         <build>
110                 <plugins>
111                         <plugin>
112                                 <groupId>org.apache.maven.plugins</groupId>
113                                 <artifactId>maven-compiler-plugin</artifactId>
114                                 <version>3.2</version>
115                                 <configuration>
116                                         <source>1.8</source>
117                                         <target>1.8</target>
118                                 </configuration>
119                         </plugin>
120                         <plugin>
121                                 <!-- Dependency version for Clients who need it -->
122                                 <groupId>org.apache.maven.plugins</groupId>
123                                 <artifactId>maven-assembly-plugin</artifactId>
124                                 <version>2.2</version>
125                                 <configuration>
126                                         <descriptorRefs>
127                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
128                                         </descriptorRefs>
129                                 </configuration>
130                                 <executions>
131                                         <execution>
132                                                 <id>make-assembly</id>
133                                                 <phase>package</phase>
134                                                 <goals>
135                                                         <goal>single</goal>
136                                                 </goals>
137                                         </execution>
138                                 </executions>
139                         </plugin>
140                 </plugins>
141         </build>
142 </project>