Commit includes ControlLoopPolicy API and bugfixes
[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>com.google.code.gson</groupId>
92                 <artifactId>gson</artifactId>
93                 <version>2.8.0</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>log4j</groupId>
97                         <artifactId>log4j</artifactId>
98                         <version>1.2.17</version>
99                 </dependency>
100                 <dependency>
101                         <groupId>com.att.nsa</groupId>
102                         <artifactId>cambriaClient</artifactId>
103                         <version>0.0.1</version>
104                         <exclusions>
105                                 <exclusion>
106                                         <groupId>org.slf4j</groupId>
107                                         <artifactId>slf4j-log4j12</artifactId>
108                                 </exclusion>
109                         </exclusions>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.openecomp.policy.engine</groupId>
113                         <artifactId>ECOMP-XACML</artifactId>
114                         <version>${project.version}</version>
115                         <exclusions>
116                                 <exclusion>
117                                         <groupId>org.powermock</groupId>
118                                         <artifactId>powermock-api-mockito</artifactId>
119                                 </exclusion>
120                                 <exclusion>
121                                         <groupId>com.att.aft</groupId>
122                                 <artifactId>dme2</artifactId>
123                                 </exclusion>
124                                 <exclusion>
125                                         <groupId>com.att.cadi</groupId>
126                                         <artifactId>cadi-aaf</artifactId>
127                                 </exclusion>
128                         </exclusions>
129                 </dependency>
130                 <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
131                 <dependency>
132                     <groupId>org.mockito</groupId>
133                     <artifactId>mockito-all</artifactId>
134                     <version>1.10.19</version>
135                 </dependency>
136         </dependencies>
137         <build>
138                 <plugins>
139                         <plugin>
140                                 <groupId>org.apache.maven.plugins</groupId>
141                                 <artifactId>maven-compiler-plugin</artifactId>
142                                 <version>3.2</version>
143                                 <configuration>
144                                         <source>1.8</source>
145                                         <target>1.8</target>
146                                 </configuration>
147                         </plugin>
148                         <plugin>
149                                 <!-- Dependency version for Clients who need it -->
150                                 <groupId>org.apache.maven.plugins</groupId>
151                                 <artifactId>maven-assembly-plugin</artifactId>
152                                 <version>2.2</version>
153                                 <configuration>
154                                         <descriptorRefs>
155                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
156                                         </descriptorRefs>
157                                 </configuration>
158                                 <executions>
159                                         <execution>
160                                                 <id>make-assembly</id>
161                                                 <phase>package</phase>
162                                                 <goals>
163                                                         <goal>single</goal>
164                                                 </goals>
165                                         </execution>
166                                 </executions>
167                         </plugin>
168                 </plugins>
169         </build>
170 </project>