blob: ddcef1cfdbcb6016533cf64fe3db31de1e0964f7 [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijingf8a620d2017-07-28 08:21:14 +00003 ONAP Policy Engine - Common Modules
Pamela Dragosha974aa02017-02-14 19:31:53 -05004 ================================================================================
Jim Hahn2fa29d82019-01-09 15:39:46 -05005 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Pamela Dragosha974aa02017-02-14 19:31:53 -05006 ================================================================================
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
liamfallon3073f502019-12-04 10:24:58 +000010
Pamela Dragosha974aa02017-02-14 19:31:53 -050011 http://www.apache.org/licenses/LICENSE-2.0
liamfallon3073f502019-12-04 10:24:58 +000012
Pamela Dragosha974aa02017-02-14 19:31:53 -050013 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
liamfallon3073f502019-12-04 10:24:58 +000021<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 Dragosha974aa02017-02-14 19:31:53 -050025
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040026 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha974aa02017-02-14 19:31:53 -050027
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040028 <artifactId>integrity-audit</artifactId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050029
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040030 <packaging>jar</packaging>
Pamela Dragosha974aa02017-02-14 19:31:53 -050031
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040032 <parent>
33 <groupId>org.onap.policy.common</groupId>
34 <artifactId>common-modules</artifactId>
Pamela Dragosh5765deb2020-03-20 07:35:03 -040035 <version>1.6.3-SNAPSHOT</version>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040036 </parent>
Pamela Dragosha974aa02017-02-14 19:31:53 -050037
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040038 <name>Integrity Audit</name>
Pamela Dragosha974aa02017-02-14 19:31:53 -050039
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040040 <dependencies>
41 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>log4j</groupId>
48 <artifactId>log4j</artifactId>
49 </dependency>
50 <dependency>
liamfallon3073f502019-12-04 10:24:58 +000051 <groupId>org.slf4j</groupId>
52 <artifactId>slf4j-ext</artifactId>
53 <version>1.8.0-beta4</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040057 <groupId>com.h2database</groupId>
58 <artifactId>h2</artifactId>
59 </dependency>
60 <dependency>
61 <groupId>org.eclipse.persistence</groupId>
62 <artifactId>javax.persistence</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.eclipse.persistence</groupId>
66 <artifactId>eclipselink</artifactId>
67 </dependency>
68 <dependency>
69 <groupId>org.onap.policy.common</groupId>
70 <artifactId>utils</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.onap.policy.common</groupId>
75 <artifactId>utils-test</artifactId>
76 <version>${project.version}</version>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
Jim Hahnc9392e12019-06-19 17:31:24 -040080 <groupId>org.assertj</groupId>
81 <artifactId>assertj-core</artifactId>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040085 <groupId>org.onap.policy.common</groupId>
86 <artifactId>ONAP-Logging</artifactId>
87 <version>${project.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.commons</groupId>
91 <artifactId>commons-lang3</artifactId>
92 </dependency>
93 </dependencies>
Pamela Dragosha974aa02017-02-14 19:31:53 -050094
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040095 <build>
96 <plugins>
97 <plugin>
98 <artifactId>maven-checkstyle-plugin</artifactId>
99 <executions>
100 <execution>
101 <id>onap-java-style</id>
102 <goals>
103 <goal>check</goal>
104 </goals>
105 <phase>process-sources</phase>
106 <configuration>
107 <!-- Use Google Java Style Guide:
108 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
109 with minor changes -->
110 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
111 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
HOCKLA79e69312019-12-11 10:24:44 -0600112 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400113 <includeResources>true</includeResources>
114 <includeTestSourceDirectory>true</includeTestSourceDirectory>
115 <includeTestResources>true</includeTestResources>
116 <excludes>
117 </excludes>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400118 <consoleOutput>true</consoleOutput>
119 <failsOnViolation>true</failsOnViolation>
120 <violationSeverity>warning</violationSeverity>
121 </configuration>
122 </execution>
123 </executions>
124 <dependencies>
125 <dependency>
126 <groupId>org.onap.oparent</groupId>
127 <artifactId>checkstyle</artifactId>
128 <version>${oparent.version}</version>
129 <scope>compile</scope>
130 </dependency>
131 </dependencies>
132 </plugin>
133 </plugins>
134 <pluginManagement>
135 <plugins>
liamfallon3073f502019-12-04 10:24:58 +0000136 <!--This plugin's configuration is used to store Eclipse m2e settings
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400137 only. It has no influence on the Maven build itself. -->
138 <plugin>
139 <groupId>org.eclipse.m2e</groupId>
140 <artifactId>lifecycle-mapping</artifactId>
141 <version>1.0.0</version>
142 <configuration>
143 <lifecycleMappingMetadata>
144 <pluginExecutions>
145 <pluginExecution>
146 <pluginExecutionFilter>
147 <groupId>org.jacoco</groupId>
148 <artifactId>
149 jacoco-maven-plugin
150 </artifactId>
151 <versionRange>
152 [0.7.1.201405082137,)
153 </versionRange>
154 <goals>
155 <goal>prepare-agent</goal>
156 </goals>
157 </pluginExecutionFilter>
158 <action>
liamfallon2f72ab62018-10-31 15:23:33 +0000159 <ignore />
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400160 </action>
161 </pluginExecution>
162 </pluginExecutions>
163 </lifecycleMappingMetadata>
164 </configuration>
165 </plugin>
166 </plugins>
167 </pluginManagement>
168 </build>
Pamela Dragosh59b6c042017-03-10 11:45:59 -0500169</project>