v1.1.0-SNAPSHOT
[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>xml-apis</groupId>
36                         <artifactId>xml-apis</artifactId>
37                         <version>1.4.01</version>
38                 </dependency>                   
39                 <dependency>
40                         <groupId>com.fasterxml.jackson.core</groupId>
41                         <artifactId>jackson-databind</artifactId>
42                         <version>2.8.5</version>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.glassfish</groupId>
46                         <artifactId>javax.json</artifactId>
47                         <version>1.0.4</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.apache.httpcomponents</groupId>
51                         <artifactId>httpclient</artifactId>
52                         <version>4.3.1</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>commons-io</groupId>
56                         <artifactId>commons-io</artifactId>
57                         <version>2.4</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>com.google.guava</groupId>
61                         <artifactId>guava</artifactId>
62                         <version>14.0.1</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>junit</groupId>
66                         <artifactId>junit</artifactId>
67                         <version>4.11</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>javax.websocket</groupId>
71                         <artifactId>javax.websocket-api</artifactId>
72                         <version>1.1</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.glassfish.tyrus</groupId>
76                         <artifactId>tyrus-client</artifactId>
77                         <version>1.13</version>
78                 </dependency>
79                 <dependency>
80                         <groupId>org.glassfish.tyrus</groupId>
81                         <artifactId>tyrus-container-grizzly-client</artifactId>
82                         <version>1.13</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>log4j</groupId>
86                         <artifactId>log4j</artifactId>
87                         <version>1.2.17</version>
88                 </dependency>
89                 <dependency>
90                         <groupId>com.att.nsa</groupId>
91                         <artifactId>cambriaClient</artifactId>
92                         <version>0.0.1</version>
93                         <exclusions>
94                                 <exclusion>
95                                         <groupId>org.slf4j</groupId>
96                                         <artifactId>slf4j-log4j12</artifactId>
97                                 </exclusion>
98                         </exclusions>
99                 </dependency>
100                 <dependency>
101                         <groupId>org.openecomp.policy.engine</groupId>
102                         <artifactId>ECOMP-XACML</artifactId>
103                         <version>${project.version}</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.eclipse.persistence</groupId>
107                         <artifactId>javax.persistence</artifactId>
108                         <version>2.1.0</version>
109                 </dependency>
110                 <dependency>
111                         <groupId>org.eclipse.persistence</groupId>
112                         <artifactId>eclipselink</artifactId>
113                         <version>2.5.2</version>
114                 </dependency>
115                 <dependency>
116                         <groupId>mysql</groupId>
117                         <artifactId>mysql-connector-java</artifactId>
118                         <version>5.1.30</version>
119                 </dependency>
120                 <dependency>
121                         <groupId>org.mariadb.jdbc</groupId>
122                         <artifactId>mariadb-java-client</artifactId>
123                         <version>1.2.3</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>org.openecomp.policy.engine</groupId>
127                         <artifactId>PolicyEngineUtils</artifactId>
128                         <version>${project.version}</version>
129                 </dependency>
130         </dependencies>
131         <build>
132                 <plugins>
133                         <plugin>
134                                 <groupId>org.apache.maven.plugins</groupId>
135                                 <artifactId>maven-compiler-plugin</artifactId>
136                                 <version>3.2</version>
137                                 <configuration>
138                                         <source>1.8</source>
139                                         <target>1.8</target>
140                                 </configuration>
141                         </plugin>
142                         <plugin>
143                                 <!-- Dependency version for Clients who need it -->
144                                 <groupId>org.apache.maven.plugins</groupId>
145                                 <artifactId>maven-assembly-plugin</artifactId>
146                                 <version>2.2</version>
147                                 <configuration>
148                                         <descriptorRefs>
149                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
150                                         </descriptorRefs>
151                                 </configuration>
152                                 <executions>
153                                         <execution>
154                                                 <id>make-assembly</id>
155                                                 <phase>package</phase>
156                                                 <goals>
157                                                         <goal>single</goal>
158                                                 </goals>
159                                         </execution>
160                                 </executions>
161                         </plugin>
162                 </plugins>
163         </build>
164 </project>