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