Pamela Dragosh | d548b61 | 2018-04-16 11:53:04 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | drools-pdp-apps |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017-2018 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 | |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +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"> |
Pamela Dragosh | 1743599 | 2018-08-28 11:57:33 -0400 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 23 | |
Pamela Dragosh | 1743599 | 2018-08-28 11:57:33 -0400 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 26 | <artifactId>model-impl</artifactId> |
liamfallon | fd6a4f3 | 2018-10-31 16:54:18 +0000 | [diff] [blame] | 27 | <version>1.4.0-SNAPSHOT</version> |
Pamela Dragosh | 1743599 | 2018-08-28 11:57:33 -0400 | [diff] [blame] | 28 | </parent> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 29 | |
Pamela Dragosh | 1743599 | 2018-08-28 11:57:33 -0400 | [diff] [blame] | 30 | <artifactId>sdc</artifactId> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 31 | |
Pamela Dragosh | 1743599 | 2018-08-28 11:57:33 -0400 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>junit</groupId> |
| 35 | <artifactId>junit</artifactId> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | </dependencies> |
Pamela Dragosh | a24a985 | 2018-09-21 20:08:11 -0400 | [diff] [blame] | 39 | |
| 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <id>onap-java-style</id> |
| 47 | <goals> |
| 48 | <goal>check</goal> |
| 49 | </goals> |
| 50 | <phase>process-sources</phase> |
| 51 | <configuration> |
| 52 | <!-- Use Google Java Style Guide: |
| 53 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 54 | with minor changes --> |
| 55 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 56 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 57 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 58 | <includeResources>true</includeResources> |
| 59 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 60 | <includeTestResources>true</includeTestResources> |
| 61 | <excludes> |
| 62 | </excludes> |
| 63 | <suppressionsLocation>${project.basedir}/checkstyle-suppressions.xml</suppressionsLocation> |
| 64 | <consoleOutput>true</consoleOutput> |
| 65 | <failsOnViolation>true</failsOnViolation> |
| 66 | <violationSeverity>warning</violationSeverity> |
| 67 | </configuration> |
| 68 | </execution> |
| 69 | </executions> |
| 70 | <dependencies> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.oparent</groupId> |
| 73 | <artifactId>checkstyle</artifactId> |
| 74 | <version>${oparent.version}</version> |
| 75 | <scope>compile</scope> |
| 76 | </dependency> |
| 77 | </dependencies> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 81 | </project> |