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