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 | |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
Liam Fallon | fe4cd8e | 2017-12-14 07:40:18 -0800 | [diff] [blame] | 24 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 27 | <artifactId>model-impl</artifactId> |
liamfallon | 4cfda9c | 2018-06-05 16:41:35 +0100 | [diff] [blame] | 28 | <version>1.3.0-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 29 | </parent> |
Liam Fallon | fe4cd8e | 2017-12-14 07:40:18 -0800 | [diff] [blame] | 30 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 31 | <artifactId>aai</artifactId> |
Liam Fallon | fe4cd8e | 2017-12-14 07:40:18 -0800 | [diff] [blame] | 32 | |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>com.google.code.gson</groupId> |
| 36 | <artifactId>gson</artifactId> |
| 37 | <version>2.5</version> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 42 | <artifactId>rest</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>junit</groupId> |
| 47 | <artifactId>junit</artifactId> |
| 48 | <version>4.12</version> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.mockito</groupId> |
| 53 | <artifactId>mockito-core</artifactId> |
| 54 | <version>2.13.0</version> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.powermock</groupId> |
| 59 | <artifactId>powermock-core</artifactId> |
| 60 | <version>1.7.3</version> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame^] | 64 | <groupId>org.onap.policy.common</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 65 | <artifactId>policy-endpoints</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
| 69 | </dependencies> |
mmis | f6a81de | 2018-03-22 16:36:47 +0000 | [diff] [blame] | 70 | |
| 71 | <build> |
| 72 | <plugins> |
| 73 | <plugin> |
| 74 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 75 | <executions> |
| 76 | <execution> |
| 77 | <id>onap-java-style</id> |
| 78 | <goals> |
| 79 | <goal>check</goal> |
| 80 | </goals> |
| 81 | <phase>process-sources</phase> |
| 82 | <configuration> |
| 83 | <!-- Use Google Java Style Guide: |
| 84 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 85 | with minor changes --> |
| 86 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 87 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 88 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 89 | <includeResources>true</includeResources> |
| 90 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 91 | <includeTestResources>true</includeTestResources> |
| 92 | <excludes> |
| 93 | </excludes> |
| 94 | <consoleOutput>true</consoleOutput> |
| 95 | <failOnViolation>true</failOnViolation> |
| 96 | <violationSeverity>warning</violationSeverity> |
| 97 | </configuration> |
| 98 | </execution> |
| 99 | </executions> |
| 100 | <dependencies> |
| 101 | <dependency> |
| 102 | <groupId>org.onap.oparent</groupId> |
| 103 | <artifactId>checkstyle</artifactId> |
| 104 | <version>0.1.1</version> |
| 105 | <scope>compile</scope> |
| 106 | </dependency> |
| 107 | </dependencies> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
Gao, Chenfei (cg287m) | 6837716 | 2017-06-22 14:48:41 -0400 | [diff] [blame] | 111 | </project> |