Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | f8a620d | 2017-07-28 08:21:14 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Common Modules |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 4 | ================================================================================ |
Jim Hahn | 2fa29d8 | 2019-01-09 15:39:46 -0500 | [diff] [blame] | 5 | Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -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 | 2f72ab6 | 2018-10-31 15:23:33 +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/maven-v4_0_0.xsd"> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 22 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 24 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 25 | <artifactId>integrity-audit</artifactId> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 26 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 27 | <packaging>jar</packaging> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 28 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.onap.policy.common</groupId> |
| 31 | <artifactId>common-modules</artifactId> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 32 | <version>1.4.0-SNAPSHOT</version> |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 33 | </parent> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 34 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 35 | <name>Integrity Audit</name> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 36 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 37 | <dependencies> |
| 38 | <dependency> |
| 39 | <groupId>junit</groupId> |
| 40 | <artifactId>junit</artifactId> |
| 41 | <scope>test</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>log4j</groupId> |
| 45 | <artifactId>log4j</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>com.h2database</groupId> |
| 49 | <artifactId>h2</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.eclipse.persistence</groupId> |
| 53 | <artifactId>javax.persistence</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.eclipse.persistence</groupId> |
| 57 | <artifactId>eclipselink</artifactId> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.onap.policy.common</groupId> |
| 61 | <artifactId>utils</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.onap.policy.common</groupId> |
| 66 | <artifactId>utils-test</artifactId> |
| 67 | <version>${project.version}</version> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.onap.policy.common</groupId> |
| 72 | <artifactId>ONAP-Logging</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.apache.commons</groupId> |
| 77 | <artifactId>commons-lang3</artifactId> |
| 78 | </dependency> |
| 79 | </dependencies> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 80 | |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 81 | <build> |
| 82 | <plugins> |
| 83 | <plugin> |
| 84 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 85 | <executions> |
| 86 | <execution> |
| 87 | <id>onap-java-style</id> |
| 88 | <goals> |
| 89 | <goal>check</goal> |
| 90 | </goals> |
| 91 | <phase>process-sources</phase> |
| 92 | <configuration> |
| 93 | <!-- Use Google Java Style Guide: |
| 94 | https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 95 | with minor changes --> |
| 96 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 97 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
| 98 | <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> |
| 99 | <includeResources>true</includeResources> |
| 100 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 101 | <includeTestResources>true</includeTestResources> |
| 102 | <excludes> |
| 103 | </excludes> |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 104 | <consoleOutput>true</consoleOutput> |
| 105 | <failsOnViolation>true</failsOnViolation> |
| 106 | <violationSeverity>warning</violationSeverity> |
| 107 | </configuration> |
| 108 | </execution> |
| 109 | </executions> |
| 110 | <dependencies> |
| 111 | <dependency> |
| 112 | <groupId>org.onap.oparent</groupId> |
| 113 | <artifactId>checkstyle</artifactId> |
| 114 | <version>${oparent.version}</version> |
| 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | </dependencies> |
| 118 | </plugin> |
| 119 | </plugins> |
| 120 | <pluginManagement> |
| 121 | <plugins> |
| 122 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 123 | only. It has no influence on the Maven build itself. --> |
| 124 | <plugin> |
| 125 | <groupId>org.eclipse.m2e</groupId> |
| 126 | <artifactId>lifecycle-mapping</artifactId> |
| 127 | <version>1.0.0</version> |
| 128 | <configuration> |
| 129 | <lifecycleMappingMetadata> |
| 130 | <pluginExecutions> |
| 131 | <pluginExecution> |
| 132 | <pluginExecutionFilter> |
| 133 | <groupId>org.jacoco</groupId> |
| 134 | <artifactId> |
| 135 | jacoco-maven-plugin |
| 136 | </artifactId> |
| 137 | <versionRange> |
| 138 | [0.7.1.201405082137,) |
| 139 | </versionRange> |
| 140 | <goals> |
| 141 | <goal>prepare-agent</goal> |
| 142 | </goals> |
| 143 | </pluginExecutionFilter> |
| 144 | <action> |
liamfallon | 2f72ab6 | 2018-10-31 15:23:33 +0000 | [diff] [blame] | 145 | <ignore /> |
Pamela Dragosh | af5e28c | 2018-09-21 12:48:29 -0400 | [diff] [blame] | 146 | </action> |
| 147 | </pluginExecution> |
| 148 | </pluginExecutions> |
| 149 | </lifecycleMappingMetadata> |
| 150 | </configuration> |
| 151 | </plugin> |
| 152 | </plugins> |
| 153 | </pluginManagement> |
| 154 | </build> |
Pamela Dragosh | 59b6c04 | 2017-03-10 11:45:59 -0500 | [diff] [blame] | 155 | </project> |