Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | rest |
| 4 | ================================================================================ |
HOCKLA | c5475f1 | 2020-01-10 12:16:00 -0600 | [diff] [blame] | 5 | Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2019 Nordix Foundation. |
| 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 | |
| 23 | <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"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 28 | <artifactId>model-impl</artifactId> |
Jim Hahn | 384cf72 | 2020-09-08 14:28:58 -0400 | [diff] [blame] | 29 | <version>2.3.2-SNAPSHOT</version> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>rest</artifactId> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 36 | <groupId>com.google.code.gson</groupId> |
| 37 | <artifactId>gson</artifactId> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.httpcomponents</groupId> |
| 42 | <artifactId>httpclient</artifactId> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
JohnKeeney | 396d5e5 | 2019-07-09 12:32:41 +0000 | [diff] [blame] | 45 | <dependency> |
Jim Hahn | 93fb25d | 2020-01-10 17:52:57 -0500 | [diff] [blame] | 46 | <groupId>javax.xml.bind</groupId> |
| 47 | <artifactId>jaxb-api</artifactId> |
| 48 | <version>${version.javax.bind}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
JohnKeeney | 396d5e5 | 2019-07-09 12:32:41 +0000 | [diff] [blame] | 51 | <groupId>junit</groupId> |
| 52 | <artifactId>junit</artifactId> |
| 53 | <scope>test</scope> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onap.policy.common</groupId> |
| 57 | <artifactId>policy-endpoints</artifactId> |
| 58 | <version>${policy.common.version}</version> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 61 | </dependencies> |
| 62 | |
| 63 | <build> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 67 | <executions> |
| 68 | <execution> |
| 69 | <id>onap-java-style</id> |
| 70 | <goals> |
| 71 | <goal>check</goal> |
| 72 | </goals> |
| 73 | <phase>process-sources</phase> |
| 74 | <configuration> |
| 75 | <!-- Use Google Java Style Guide: |
| 76 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 77 | with minor changes --> |
| 78 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 79 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
HOCKLA | 754f9a0 | 2019-12-21 12:11:33 -0600 | [diff] [blame] | 80 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 81 | <includeResources>true</includeResources> |
| 82 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 83 | <includeTestResources>true</includeTestResources> |
| 84 | <excludes> |
| 85 | </excludes> |
| 86 | <consoleOutput>true</consoleOutput> |
| 87 | <failsOnViolation>true</failsOnViolation> |
| 88 | <violationSeverity>warning</violationSeverity> |
| 89 | </configuration> |
| 90 | </execution> |
| 91 | </executions> |
| 92 | <dependencies> |
| 93 | <dependency> |
| 94 | <groupId>org.onap.oparent</groupId> |
| 95 | <artifactId>checkstyle</artifactId> |
| 96 | <version>${oparent.version}</version> |
| 97 | <scope>compile</scope> |
| 98 | </dependency> |
| 99 | </dependencies> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
| 103 | </project> |