blob: d94a04538adad6b15f2ed457610a370da929fc44 [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
Guo Ruijing073cc182017-07-31 08:47:35 +00004 ONAP Policy Engine
Pamela Dragosh91d04c62017-02-14 19:41:00 -05005 ================================================================================
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -05006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh91d04c62017-02-14 19:41:00 -05007 ================================================================================
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
liamfallon4ddca8b2018-10-31 17:17:01 +000022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040023 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.onap.policy.engine</groupId>
26 <artifactId>PolicyEngineSuite</artifactId>
Pamela Dragoshb874f122019-04-16 10:18:43 -040027 <version>1.3.7-SNAPSHOT</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040028 </parent>
29 <artifactId>PolicyEngineAPI</artifactId>
30 <dependencies>
31 <dependency>
32 <groupId>org.glassfish</groupId>
33 <artifactId>javax.json</artifactId>
34 <version>1.0.4</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.httpcomponents</groupId>
38 <artifactId>httpclient</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>commons-io</groupId>
42 <artifactId>commons-io</artifactId>
43 <version>2.4</version>
44 </dependency>
45 <dependency>
46 <groupId>com.google.guava</groupId>
47 <artifactId>guava</artifactId>
48 </dependency>
49 <dependency>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040050 <groupId>javax.websocket</groupId>
51 <artifactId>javax.websocket-api</artifactId>
52 <version>1.1</version>
53 </dependency>
54 <dependency>
55 <groupId>org.java-websocket</groupId>
56 <artifactId>Java-WebSocket</artifactId>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040057 </dependency>
58 <dependency>
59 <groupId>org.springframework</groupId>
60 <artifactId>spring-webmvc</artifactId>
Pamela Dragoshaec7ea12018-09-14 10:34:25 -040061 <version>${springframework.version}</version>
Pamela Dragosh2cb76b32018-08-30 07:51:13 -040062 </dependency>
63 <dependency>
64 <groupId>com.google.code.gson</groupId>
65 <artifactId>gson</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>log4j</groupId>
69 <artifactId>log4j</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>com.att.nsa</groupId>
73 <artifactId>cambriaClient</artifactId>
74 <exclusions>
75 <exclusion>
76 <groupId>org.slf4j</groupId>
77 <artifactId>slf4j-log4j12</artifactId>
78 </exclusion>
79 </exclusions>
80 </dependency>
81 <dependency>
82 <groupId>org.onap.policy.engine</groupId>
83 <artifactId>ONAP-XACML</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 </dependencies>
87 <build>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-compiler-plugin</artifactId>
92 <configuration>
93 <source>1.8</source>
94 <target>1.8</target>
95 </configuration>
96 </plugin>
97 <plugin>
98 <!-- Dependency version for Clients who need it -->
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-assembly-plugin</artifactId>
101 <configuration>
102 <descriptorRefs>
103 <descriptorRef>jar-with-dependencies</descriptorRef>
104 </descriptorRefs>
105 </configuration>
106 <executions>
107 <execution>
108 <id>make-assembly</id>
109 <phase>package</phase>
110 <goals>
111 <goal>single</goal>
112 </goals>
113 </execution>
114 </executions>
115 </plugin>
116 </plugins>
117 </build>
Pamela Dragosh91d04c62017-02-14 19:41:00 -0500118</project>