blob: 1685cbcb6d87594fe2dc52d7f1746f285f8e3583 [file] [log] [blame]
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Jim Hahn86512b02019-07-10 15:58:09 -04005 Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -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
liamfallon99200202018-10-31 16:00:08 +000021<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">
liamfallon0237fe02019-05-16 09:39:24 +000022
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050023 <modelVersion>4.0.0</modelVersion>
liamfallon0237fe02019-05-16 09:39:24 +000024
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahnccfc9972019-08-07 15:17:36 -040028 <version>1.5.2-SNAPSHOT</version>
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050029 </parent>
liamfallon0237fe02019-05-16 09:39:24 +000030
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050031 <artifactId>api-state-management</artifactId>
liamfallon0237fe02019-05-16 09:39:24 +000032
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050033 <name>api-state-management</name>
34 <description>Separately loadable module for state management APIe</description>
35
36 <properties>
37 <maven.compiler.source>1.8</maven.compiler.source>
38 <maven.compiler.target>1.8</maven.compiler.target>
39 <swagger.version>1.5.0</swagger.version>
40 </properties>
41
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050042
43 <dependencies>
44 <dependency>
Jim Hahna156cf32019-08-05 15:27:16 -040045 <groupId>org.onap.policy.drools-pdp</groupId>
46 <artifactId>policy-core</artifactId>
47 <version>${project.version}</version>
48 <scope>provided</scope>
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050049 </dependency>
50 <dependency>
Jim Hahna156cf32019-08-05 15:27:16 -040051 <groupId>org.onap.policy.common</groupId>
52 <artifactId>integrity-monitor</artifactId>
53 <version>${policy.common.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.projectlombok</groupId>
57 <artifactId>lombok</artifactId>
58 <scope>provided</scope>
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050059 </dependency>
60 </dependencies>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040061
62 <build>
63 <plugins>
64 <plugin>
65 <artifactId>maven-checkstyle-plugin</artifactId>
66 <executions>
67 <execution>
68 <id>onap-java-style</id>
69 <goals>
70 <goal>check</goal>
71 </goals>
72 <phase>process-sources</phase>
73 <configuration>
74 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
75 with minor changes -->
76 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
77 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
78 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
79 <includeResources>true</includeResources>
80 <includeTestSourceDirectory>true</includeTestSourceDirectory>
81 <includeTestResources>true</includeTestResources>
82 <excludes>
83 </excludes>
Pamela Dragosha0e0c782018-09-28 04:58:26 -040084 <consoleOutput>true</consoleOutput>
85 <failsOnViolation>true</failsOnViolation>
86 <violationSeverity>warning</violationSeverity>
87 </configuration>
88 </execution>
89 </executions>
90 <dependencies>
91 <dependency>
92 <groupId>org.onap.oparent</groupId>
93 <artifactId>checkstyle</artifactId>
94 <version>${oparent.version}</version>
95 <scope>compile</scope>
96 </dependency>
97 </dependencies>
98 </plugin>
99 </plugins>
100 </build>
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -0500101</project>