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