Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.openecomp.policy.drools-pdp</groupId> |
| 28 | <artifactId>drools-pdp</artifactId> |
| 29 | <version>1.0.0-SNAPSHOT</version> |
| 30 | </parent> |
| 31 | |
| 32 | <artifactId>policy-endpoints</artifactId> |
| 33 | |
| 34 | <name>policy-endpoints</name> |
| 35 | <description>Policy UEB support</description> |
| 36 | |
| 37 | <properties> |
| 38 | <maven.compiler.source>1.8</maven.compiler.source> |
| 39 | <maven.compiler.target>1.8</maven.compiler.target> |
| 40 | <cambria.version>0.0.1</cambria.version> |
| 41 | <dmaap.version>0.2.12</dmaap.version> |
| 42 | <jetty.version>9.3.14.v20161028</jetty.version> |
| 43 | <jersey.version>2.22.1</jersey.version> |
| 44 | <jackson.version>2.8.4</jackson.version> |
| 45 | |
| 46 | </properties> |
| 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>com.att.nsa</groupId> |
| 51 | <artifactId>cambriaClient</artifactId> |
| 52 | <version>${cambria.version}</version> |
| 53 | <exclusions> |
| 54 | <exclusion> |
| 55 | <groupId>org.slf4j</groupId> |
| 56 | <artifactId>slf4j-log4j12</artifactId> |
| 57 | </exclusion> |
| 58 | <exclusion> |
| 59 | <groupId>com.att.nsa</groupId> |
| 60 | <artifactId>saClientLibrary</artifactId> |
| 61 | </exclusion> |
| 62 | </exclusions> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>com.att.nsa</groupId> |
| 66 | <artifactId>dmaapClient</artifactId> |
| 67 | <version>${dmaap.version}</version> |
| 68 | <exclusions> |
| 69 | <exclusion> |
| 70 | <groupId>org.slf4j</groupId> |
| 71 | <artifactId>slf4j-log4j12</artifactId> |
| 72 | </exclusion> |
| 73 | </exclusions> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.eclipse.jetty</groupId> |
| 77 | <artifactId>jetty-server</artifactId> |
| 78 | <version>${jetty.version}</version> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.eclipse.jetty</groupId> |
| 83 | <artifactId>jetty-servlet</artifactId> |
| 84 | <version>${jetty.version}</version> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.glassfish.jersey.core</groupId> |
| 89 | <artifactId>jersey-server</artifactId> |
| 90 | <version>${jersey.version}</version> |
| 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.glassfish.jersey.containers</groupId> |
| 95 | <artifactId>jersey-container-servlet-core</artifactId> |
| 96 | <version>${jersey.version}</version> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
| 100 | <groupId>org.glassfish.jersey.media</groupId> |
| 101 | <artifactId>jersey-media-json-jackson</artifactId> |
| 102 | <version>${jersey.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.glassfish.jersey.containers</groupId> |
| 107 | <artifactId>jersey-container-jetty-http</artifactId> |
| 108 | <version>${jersey.version}</version> |
| 109 | <exclusions> |
| 110 | <exclusion> |
| 111 | <groupId>org.eclipse.jetty</groupId> |
| 112 | <artifactId>jetty-util</artifactId> |
| 113 | </exclusion> |
| 114 | </exclusions> |
| 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
| 118 | <groupId>org.glassfish.jersey.core</groupId> |
| 119 | <artifactId>jersey-client</artifactId> |
| 120 | <version>${jersey.version}</version> |
| 121 | </dependency> |
| 122 | |
| 123 | <dependency> |
| 124 | <groupId>com.fasterxml.jackson.core</groupId> |
| 125 | <artifactId>jackson-databind</artifactId> |
| 126 | <version>${jackson.version}</version> |
| 127 | </dependency> |
| 128 | |
| 129 | <dependency> |
| 130 | <groupId>com.fasterxml.jackson.datatype</groupId> |
| 131 | <artifactId>jackson-datatype-jsr310</artifactId> |
| 132 | <version>${jackson.version}</version> |
| 133 | </dependency> |
| 134 | |
| 135 | <dependency> |
| 136 | <groupId>org.apache.httpcomponents</groupId> |
| 137 | <artifactId>httpcore</artifactId> |
| 138 | <version>4.4.4</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.apache.httpcomponents</groupId> |
| 142 | <artifactId>httpclient</artifactId> |
| 143 | <version>4.5</version> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.apache.commons</groupId> |
| 147 | <artifactId>commons-collections4</artifactId> |
| 148 | <version>4.1</version> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>org.openecomp.policy.drools-pdp</groupId> |
| 152 | <artifactId>policy-core</artifactId> |
| 153 | <version>1.0.0-SNAPSHOT</version> |
| 154 | </dependency> |
| 155 | </dependencies> |
| 156 | |
| 157 | </project> |