blob: 25074a71bd5f9c3fbd982e9d2431b246324aaf57 [file] [log] [blame]
Kevin McKiou4c539952017-09-14 12:31:02 -05001<!--
2 ============LICENSE_START=======================================================
3 ECOMP Policy Engine - Drools PDP
4 ================================================================================
Jim Hahn6dee9fb2019-07-10 15:42:40 -04005 Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
Kevin McKiou4c539952017-09-14 12:31:02 -05006 ================================================================================
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>
liamfallon0237fe02019-05-16 09:39:24 +000024
Kevin McKiou4c539952017-09-14 12:31:02 -050025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
Kevin McKiou4c539952017-09-14 12:31:02 -050029 </parent>
liamfallon0237fe02019-05-16 09:39:24 +000030
Kevin McKiou4c539952017-09-14 12:31:02 -050031 <artifactId>api-active-standby-management</artifactId>
liamfallon0237fe02019-05-16 09:39:24 +000032
Kevin McKiou4c539952017-09-14 12:31:02 -050033 <name>api-active-standby-management</name>
34 <description>API for Active Standby Management feature</description>
35
36 <properties>
37 <maven.compiler.source>1.8</maven.compiler.source>
38 <maven.compiler.target>1.8</maven.compiler.target>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.onap.policy.drools-pdp</groupId>
44 <artifactId>policy-management</artifactId>
45 <version>${project.version}</version>
46 <scope>provided</scope>
47 </dependency>
48 </dependencies>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040049
50 <build>
51 <plugins>
52 <plugin>
53 <artifactId>maven-checkstyle-plugin</artifactId>
54 <executions>
55 <execution>
56 <id>onap-java-style</id>
57 <goals>
58 <goal>check</goal>
59 </goals>
60 <phase>process-sources</phase>
61 <configuration>
62 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
63 with minor changes -->
64 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
65 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
66 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
67 <includeResources>true</includeResources>
68 <includeTestSourceDirectory>true</includeTestSourceDirectory>
69 <includeTestResources>true</includeTestResources>
70 <excludes>
71 </excludes>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040072 <consoleOutput>true</consoleOutput>
73 <failsOnViolation>true</failsOnViolation>
74 <violationSeverity>warning</violationSeverity>
75 </configuration>
76 </execution>
77 </executions>
78 <dependencies>
79 <dependency>
80 <groupId>org.onap.oparent</groupId>
81 <artifactId>checkstyle</artifactId>
82 <version>${oparent.version}</version>
83 <scope>compile</scope>
84 </dependency>
85 </dependencies>
86 </plugin>
87 </plugins>
88 </build>
Kevin McKiou4c539952017-09-14 12:31:02 -050089</project>