Policy TestSuite Enabled
[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                         <exclusions>
111                                 <exclusion>
112                                         <groupId>org.powermock</groupId>
113                                         <artifactId>powermock-api-mockito</artifactId>
114                                 </exclusion>
115                         </exclusions>
116                 </dependency>
117                 <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
118                 <dependency>
119                     <groupId>org.mockito</groupId>
120                     <artifactId>mockito-all</artifactId>
121                     <version>1.10.19</version>
122                 </dependency>
123         </dependencies>
124         <build>
125                 <plugins>
126                         <plugin>
127                                 <groupId>org.apache.maven.plugins</groupId>
128                                 <artifactId>maven-compiler-plugin</artifactId>
129                                 <version>3.2</version>
130                                 <configuration>
131                                         <source>1.8</source>
132                                         <target>1.8</target>
133                                 </configuration>
134                         </plugin>
135                         <plugin>
136                                 <!-- Dependency version for Clients who need it -->
137                                 <groupId>org.apache.maven.plugins</groupId>
138                                 <artifactId>maven-assembly-plugin</artifactId>
139                                 <version>2.2</version>
140                                 <configuration>
141                                         <descriptorRefs>
142                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
143                                         </descriptorRefs>
144                                 </configuration>
145                                 <executions>
146                                         <execution>
147                                                 <id>make-assembly</id>
148                                                 <phase>package</phase>
149                                                 <goals>
150                                                         <goal>single</goal>
151                                                 </goals>
152                                         </execution>
153                                 </executions>
154                         </plugin>
155                 </plugins>
156         </build>
157 </project>