Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | so |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
| 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> |
Pamela Dragosh | 814101d | 2019-05-29 07:44:50 -0400 | [diff] [blame] | 29 | <version>2.1.0-SNAPSHOT</version> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <artifactId>so</artifactId> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>junit</groupId> |
| 37 | <artifactId>junit</artifactId> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>com.google.code.gson</groupId> |
| 42 | <artifactId>gson</artifactId> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 46 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 47 | <artifactId>rest</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.policy.common</groupId> |
| 52 | <artifactId>policy-endpoints</artifactId> |
| 53 | <version>${policy.common.version}</version> |
| 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 57 | <groupId>org.glassfish.jersey.containers</groupId> |
| 58 | <artifactId>jersey-container-grizzly2-http</artifactId> |
| 59 | <version>2.25.1</version> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | </dependencies> |
| 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 --> |
| 80 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 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> |