Joshua Reich | a7a144b | 2019-04-10 13:38:59 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | drools-applications |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. |
| 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 | <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"> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 25 | <artifactId>common</artifactId> |
Pamela Dragosh | 7746509 | 2019-06-14 15:21:32 -0400 | [diff] [blame] | 26 | <version>1.4.3-SNAPSHOT</version> |
Joshua Reich | a7a144b | 2019-04-10 13:38:59 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>database</artifactId> |
| 30 | |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>com.att.research.xacml</groupId> |
| 34 | <artifactId>xacml-pdp</artifactId> |
| 35 | <version>2.0.1</version> |
jhh | a7a75ae | 2019-05-02 14:44:14 -0500 | [diff] [blame] | 36 | <scope>provided</scope> |
Joshua Reich | a7a144b | 2019-04-10 13:38:59 -0700 | [diff] [blame] | 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.projectlombok</groupId> |
| 40 | <artifactId>lombok</artifactId> |
jhh | a7a75ae | 2019-05-02 14:44:14 -0500 | [diff] [blame] | 41 | <scope>provided</scope> |
Joshua Reich | a7a144b | 2019-04-10 13:38:59 -0700 | [diff] [blame] | 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>junit</groupId> |
| 45 | <artifactId>junit</artifactId> |
| 46 | <scope>test</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>com.h2database</groupId> |
| 50 | <artifactId>h2</artifactId> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 55 | <artifactId>policy-management</artifactId> |
| 56 | <version>${version.policy.drools-pdp}</version> |
| 57 | <scope>provided</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.assertj</groupId> |
| 61 | <artifactId>assertj-core</artifactId> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | </dependencies> |
| 65 | <build> |
| 66 | <plugins> |
| 67 | <plugin> |
| 68 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 69 | <executions> |
| 70 | <execution> |
| 71 | <id>onap-java-style</id> |
| 72 | <goals> |
| 73 | <goal>check</goal> |
| 74 | </goals> |
| 75 | <phase>process-sources</phase> |
| 76 | <configuration> |
| 77 | <!-- Use Google Java Style Guide: |
| 78 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 79 | with minor changes --> |
| 80 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 81 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 82 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 83 | <includeResources>true</includeResources> |
| 84 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 85 | <includeTestResources>true</includeTestResources> |
| 86 | <excludes> |
| 87 | </excludes> |
| 88 | <consoleOutput>true</consoleOutput> |
| 89 | <failsOnViolation>true</failsOnViolation> |
| 90 | <violationSeverity>warning</violationSeverity> |
| 91 | </configuration> |
| 92 | </execution> |
| 93 | </executions> |
| 94 | <dependencies> |
| 95 | <dependency> |
| 96 | <groupId>org.onap.oparent</groupId> |
| 97 | <artifactId>checkstyle</artifactId> |
| 98 | <version>${oparent.version}</version> |
| 99 | <scope>compile</scope> |
| 100 | </dependency> |
| 101 | </dependencies> |
| 102 | </plugin> |
| 103 | </plugins> |
| 104 | </build> |
| 105 | </project> |