mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Jim Hahn | a392ecb | 2019-01-08 17:15:07 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2018-2019 AT&T Intellectual Property. All rights reserved. |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +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"> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.common</groupId> |
| 28 | <artifactId>common-modules</artifactId> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 29 | <version>1.4.0-SNAPSHOT</version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>policy-endpoints</artifactId> |
| 33 | |
| 34 | <name>policy-endpoints</name> |
| 35 | <description>Endpoints</description> |
| 36 | |
| 37 | <properties> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 38 | <jersey.swagger.version>1.5.18</jersey.swagger.version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 39 | <cambria.version>1.2.1-oss</cambria.version> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 40 | <jackson.version>2.9.5</jackson.version> |
| 41 | <http.client.version>4.5.5</http.client.version> |
| 42 | <http.core.version>4.4.4</http.core.version> |
| 43 | </properties> |
| 44 | |
| 45 | <dependencies> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.onap.policy.common</groupId> |
| 49 | <artifactId>capabilities</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.onap.policy.common</groupId> |
Jim Hahn | 4ec725e | 2019-02-06 13:14:57 -0500 | [diff] [blame] | 55 | <artifactId>gson</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onap.policy.common</groupId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 61 | <artifactId>utils</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
| 66 | <groupId>com.att.nsa</groupId> |
| 67 | <artifactId>cambriaClient</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 68 | <exclusions> |
| 69 | <exclusion> |
| 70 | <groupId>org.slf4j</groupId> |
| 71 | <artifactId>slf4j-log4j12</artifactId> |
| 72 | </exclusion> |
| 73 | </exclusions> |
| 74 | </dependency> |
| 75 | |
| 76 | <dependency> |
| 77 | <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
| 78 | <artifactId>dmaapClient</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 79 | <exclusions> |
| 80 | <exclusion> |
| 81 | <groupId>org.slf4j</groupId> |
| 82 | <artifactId>slf4j-log4j12</artifactId> |
| 83 | </exclusion> |
| 84 | <exclusion> |
| 85 | <groupId>log4j</groupId> |
| 86 | <artifactId>log4j</artifactId> |
| 87 | </exclusion> |
| 88 | </exclusions> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
Jorge Hernandez | 0d62e1d | 2018-08-08 10:28:36 -0500 | [diff] [blame] | 92 | <groupId>org.onap.aaf.authz</groupId> |
| 93 | <artifactId>aaf-cadi-aaf</artifactId> |
Jorge Hernandez | 0d62e1d | 2018-08-08 10:28:36 -0500 | [diff] [blame] | 94 | </dependency> |
| 95 | |
| 96 | <dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 97 | <groupId>org.eclipse.jetty</groupId> |
| 98 | <artifactId>jetty-server</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 99 | </dependency> |
| 100 | |
| 101 | <dependency> |
| 102 | <groupId>org.eclipse.jetty</groupId> |
| 103 | <artifactId>jetty-servlet</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 104 | </dependency> |
| 105 | |
| 106 | <dependency> |
| 107 | <groupId>org.glassfish.jersey.core</groupId> |
| 108 | <artifactId>jersey-server</artifactId> |
| 109 | <version>${jersey.version}</version> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>org.glassfish.jersey.containers</groupId> |
| 114 | <artifactId>jersey-container-servlet-core</artifactId> |
| 115 | <version>${jersey.version}</version> |
| 116 | </dependency> |
| 117 | |
| 118 | <dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 119 | <groupId>org.glassfish.jersey.containers</groupId> |
| 120 | <artifactId>jersey-container-jetty-http</artifactId> |
| 121 | <version>${jersey.version}</version> |
| 122 | <exclusions> |
| 123 | <exclusion> |
| 124 | <groupId>org.eclipse.jetty</groupId> |
| 125 | <artifactId>jetty-util</artifactId> |
| 126 | </exclusion> |
| 127 | </exclusions> |
| 128 | </dependency> |
| 129 | |
| 130 | <dependency> |
| 131 | <groupId>org.glassfish.jersey.core</groupId> |
| 132 | <artifactId>jersey-client</artifactId> |
| 133 | <version>${jersey.version}</version> |
| 134 | </dependency> |
Krzysztof Opasiak | 28f6c6b | 2019-01-28 21:07:52 +0100 | [diff] [blame] | 135 | |
mmis | ef849e6 | 2018-08-30 13:34:55 +0100 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>org.glassfish.jersey.core</groupId> |
| 138 | <artifactId>jersey-common</artifactId> |
| 139 | <version>${jersey.version}</version> |
| 140 | </dependency> |
Krzysztof Opasiak | 28f6c6b | 2019-01-28 21:07:52 +0100 | [diff] [blame] | 141 | |
Jim Hahn | 18914b0 | 2019-01-21 12:42:10 -0500 | [diff] [blame] | 142 | <dependency> |
| 143 | <groupId>com.google.code.gson</groupId> |
| 144 | <artifactId>gson</artifactId> |
| 145 | </dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 146 | |
| 147 | <dependency> |
| 148 | <groupId>com.fasterxml.jackson.core</groupId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 149 | <artifactId>jackson-annotations</artifactId> |
| 150 | <version>${jackson.version}</version> |
| 151 | </dependency> |
| 152 | |
| 153 | <dependency> |
| 154 | <groupId>org.apache.httpcomponents</groupId> |
| 155 | <artifactId>httpclient</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.apache.httpcomponents</groupId> |
| 159 | <artifactId>httpcore</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 160 | </dependency> |
| 161 | |
| 162 | <dependency> |
| 163 | <groupId>io.swagger</groupId> |
| 164 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 165 | </dependency> |
| 166 | |
| 167 | <dependency> |
| 168 | <groupId>org.apache.commons</groupId> |
| 169 | <artifactId>commons-collections4</artifactId> |
| 170 | <version>4.1</version> |
| 171 | </dependency> |
| 172 | |
| 173 | <dependency> |
| 174 | <groupId>ch.qos.logback</groupId> |
| 175 | <artifactId>logback-classic</artifactId> |
| 176 | </dependency> |
| 177 | |
| 178 | <dependency> |
Jim Hahn | c064f5e | 2019-02-13 10:53:12 -0500 | [diff] [blame] | 179 | <groupId>org.onap.policy.common</groupId> |
| 180 | <artifactId>utils-test</artifactId> |
| 181 | <version>${project.version}</version> |
| 182 | <scope>test</scope> |
| 183 | </dependency> |
| 184 | |
| 185 | <dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 186 | <groupId>junit</groupId> |
| 187 | <artifactId>junit</artifactId> |
| 188 | <scope>test</scope> |
| 189 | </dependency> |
Krzysztof Opasiak | 28f6c6b | 2019-01-28 21:07:52 +0100 | [diff] [blame] | 190 | |
Jim Hahn | 8242592 | 2018-09-25 11:29:16 -0400 | [diff] [blame] | 191 | <dependency> |
| 192 | <groupId>org.powermock</groupId> |
| 193 | <artifactId>powermock-api-mockito</artifactId> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
Krzysztof Opasiak | 28f6c6b | 2019-01-28 21:07:52 +0100 | [diff] [blame] | 196 | |
Jim Hahn | a392ecb | 2019-01-08 17:15:07 -0500 | [diff] [blame] | 197 | <dependency> |
| 198 | <groupId>org.assertj</groupId> |
| 199 | <artifactId>assertj-core</artifactId> |
Jim Hahn | a392ecb | 2019-01-08 17:15:07 -0500 | [diff] [blame] | 200 | <scope>test</scope> |
| 201 | </dependency> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 202 | |
ramverma | 95751fd | 2018-08-28 14:09:39 +0100 | [diff] [blame] | 203 | <dependency> |
| 204 | <groupId>com.openpojo</groupId> |
| 205 | <artifactId>openpojo</artifactId> |
| 206 | </dependency> |
| 207 | |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 208 | </dependencies> |
| 209 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 210 | <build> |
| 211 | <plugins> |
| 212 | <plugin> |
| 213 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 214 | <executions> |
| 215 | <execution> |
| 216 | <id>onap-java-style</id> |
| 217 | <goals> |
| 218 | <goal>check</goal> |
| 219 | </goals> |
| 220 | <phase>process-sources</phase> |
| 221 | <configuration> |
| 222 | <!-- Use Google Java Style Guide: |
| 223 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 224 | with minor changes --> |
| 225 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 226 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 227 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 228 | <includeResources>true</includeResources> |
| 229 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 230 | <includeTestResources>true</includeTestResources> |
| 231 | <excludes> |
| 232 | </excludes> |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 233 | <consoleOutput>true</consoleOutput> |
| 234 | <failsOnViolation>true</failsOnViolation> |
| 235 | <violationSeverity>warning</violationSeverity> |
| 236 | </configuration> |
| 237 | </execution> |
| 238 | </executions> |
| 239 | <dependencies> |
| 240 | <dependency> |
| 241 | <groupId>org.onap.oparent</groupId> |
| 242 | <artifactId>checkstyle</artifactId> |
| 243 | <version>${oparent.version}</version> |
| 244 | <scope>compile</scope> |
| 245 | </dependency> |
| 246 | </dependencies> |
| 247 | </plugin> |
| 248 | </plugins> |
| 249 | </build> |
mmis | b40acf2 | 2018-07-20 15:28:25 +0100 | [diff] [blame] | 250 | </project> |