daniel | 7576237 | 2017-08-11 11:36:09 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Drools PDP Application Models |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 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 | |
| 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 | <modelVersion>4.0.0</modelVersion> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 23 | |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 26 | <artifactId>model-impl</artifactId> |
| 27 | <version>1.2.0-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
daniel | 7576237 | 2017-08-11 11:36:09 -0500 | [diff] [blame] | 30 | <artifactId>appclcm</artifactId> |
| 31 | |
daniel | 7576237 | 2017-08-11 11:36:09 -0500 | [diff] [blame] | 32 | <dependencies> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 33 | <dependency> |
| 34 | <groupId>junit</groupId> |
| 35 | <artifactId>junit</artifactId> |
| 36 | <version>4.12</version> |
| 37 | <scope>test</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>com.google.code.gson</groupId> |
| 41 | <artifactId>gson</artifactId> |
| 42 | <version>2.5</version> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
daniel | 7576237 | 2017-08-11 11:36:09 -0500 | [diff] [blame] | 45 | </dependencies> |
mmis | 03bded5 | 2018-03-27 13:13:57 +0100 | [diff] [blame^] | 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <id>onap-java-style</id> |
| 54 | <goals> |
| 55 | <goal>check</goal> |
| 56 | </goals> |
| 57 | <phase>process-sources</phase> |
| 58 | <configuration> |
| 59 | <!-- Use Google Java Style Guide: |
| 60 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 61 | with minor changes --> |
| 62 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 63 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 64 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 65 | <includeResources>true</includeResources> |
| 66 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 67 | <includeTestResources>true</includeTestResources> |
| 68 | <excludes> |
| 69 | </excludes> |
| 70 | <consoleOutput>true</consoleOutput> |
| 71 | <failOnViolation>true</failOnViolation> |
| 72 | <violationSeverity>warning</violationSeverity> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | <dependencies> |
| 77 | <dependency> |
| 78 | <groupId>org.onap.oparent</groupId> |
| 79 | <artifactId>checkstyle</artifactId> |
| 80 | <version>0.1.1</version> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
| 83 | </dependencies> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
daniel | 7576237 | 2017-08-11 11:36:09 -0500 | [diff] [blame] | 87 | </project> |