Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 5 | Copyright (C) 2017, 2019-2020 AT&T Intellectual Property. All rights reserved. |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | |
| 23 | <modelVersion>4.0.0</modelVersion> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 24 | |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Peyton Puckett | 06a0e4a | 2020-03-24 13:55:15 -0500 | [diff] [blame] | 28 | <version>1.6.1-SNAPSHOT</version> |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 29 | </parent> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 30 | |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 31 | <artifactId>api-active-standby-management</artifactId> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 32 | |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 33 | <name>api-active-standby-management</name> |
| 34 | <description>API for Active Standby Management feature</description> |
| 35 | |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 39 | <artifactId>policy-management</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | </dependencies> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 44 | |
| 45 | <build> |
| 46 | <plugins> |
| 47 | <plugin> |
| 48 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>onap-java-style</id> |
| 52 | <goals> |
| 53 | <goal>check</goal> |
| 54 | </goals> |
| 55 | <phase>process-sources</phase> |
| 56 | <configuration> |
| 57 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 58 | with minor changes --> |
| 59 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 60 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
Hockla, Ali (ah999m) | 956a7b5 | 2020-01-13 14:11:46 -0600 | [diff] [blame] | 61 | <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 62 | <includeResources>true</includeResources> |
| 63 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 64 | <includeTestResources>true</includeTestResources> |
| 65 | <excludes> |
| 66 | </excludes> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 67 | <consoleOutput>true</consoleOutput> |
| 68 | <failsOnViolation>true</failsOnViolation> |
| 69 | <violationSeverity>warning</violationSeverity> |
| 70 | </configuration> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | <dependencies> |
| 74 | <dependency> |
| 75 | <groupId>org.onap.oparent</groupId> |
| 76 | <artifactId>checkstyle</artifactId> |
| 77 | <version>${oparent.version}</version> |
| 78 | <scope>compile</scope> |
| 79 | </dependency> |
| 80 | </dependencies> |
| 81 | </plugin> |
| 82 | </plugins> |
| 83 | </build> |
Kevin McKiou | 4c53995 | 2017-09-14 12:31:02 -0500 | [diff] [blame] | 84 | </project> |