Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 4 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 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 | |
liamfallon | 4ddca8b | 2018-10-31 17:17:01 +0000 | [diff] [blame] | 22 | <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 Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.engine</groupId> |
| 26 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | b874f12 | 2019-04-16 10:18:43 -0400 | [diff] [blame^] | 27 | <version>1.3.7-SNAPSHOT</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 28 | </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 Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 50 | <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 Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.springframework</groupId> |
| 60 | <artifactId>spring-webmvc</artifactId> |
Pamela Dragosh | aec7ea1 | 2018-09-14 10:34:25 -0400 | [diff] [blame] | 61 | <version>${springframework.version}</version> |
Pamela Dragosh | 2cb76b3 | 2018-08-30 07:51:13 -0400 | [diff] [blame] | 62 | </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 Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 118 | </project> |