Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Jim Hahn | 86512b0 | 2019-07-10 15:58:09 -0400 | [diff] [blame^] | 5 | Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved. |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -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 | |
liamfallon | 9920020 | 2018-10-31 16:00:08 +0000 | [diff] [blame] | 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"> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 22 | |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 24 | |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Pamela Dragosh | 55d77dd | 2019-06-28 13:49:05 -0400 | [diff] [blame] | 28 | <version>1.5.1-SNAPSHOT</version> |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 29 | </parent> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 30 | |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 31 | <artifactId>api-state-management</artifactId> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 32 | |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 33 | <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) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 42 | |
| 43 | <dependencies> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 46 | <artifactId>policy-core</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | <scope>provided</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.policy.common</groupId> |
| 52 | <artifactId>integrity-monitor</artifactId> |
ramverma | 5bf8486 | 2018-10-24 19:35:48 +0100 | [diff] [blame] | 53 | <version>${policy.common.version}</version> |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 54 | </dependency> |
| 55 | </dependencies> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 56 | |
| 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
| 60 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <id>onap-java-style</id> |
| 64 | <goals> |
| 65 | <goal>check</goal> |
| 66 | </goals> |
| 67 | <phase>process-sources</phase> |
| 68 | <configuration> |
| 69 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 70 | with minor changes --> |
| 71 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 72 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 73 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 74 | <includeResources>true</includeResources> |
| 75 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 76 | <includeTestResources>true</includeTestResources> |
| 77 | <excludes> |
| 78 | </excludes> |
Pamela Dragosh | a0e0c78 | 2018-09-28 04:58:26 -0400 | [diff] [blame] | 79 | <consoleOutput>true</consoleOutput> |
| 80 | <failsOnViolation>true</failsOnViolation> |
| 81 | <violationSeverity>warning</violationSeverity> |
| 82 | </configuration> |
| 83 | </execution> |
| 84 | </executions> |
| 85 | <dependencies> |
| 86 | <dependency> |
| 87 | <groupId>org.onap.oparent</groupId> |
| 88 | <artifactId>checkstyle</artifactId> |
| 89 | <version>${oparent.version}</version> |
| 90 | <scope>compile</scope> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </plugin> |
| 94 | </plugins> |
| 95 | </build> |
Magnusen, Drew (dm741q) | 18253e5 | 2017-09-07 08:55:17 -0500 | [diff] [blame] | 96 | </project> |