blob: 86f5db1180c2d0e2f6bc5a33ccaefe119a4e8074 [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 ================================================================================
uj426b679ce332020-06-11 13:32:53 -04005 Copyright (C) 2017-2020 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 Dragoshf3e77922020-05-19 13:34:34 -040035 <version>1.7.0-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>
liamfallon3073f502019-12-04 10:24:58 +000047 <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 Dragoshaf5e28c2018-09-21 12:48:29 -040053 <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 Hahnc9392e12019-06-19 17:31:24 -040076 <groupId>org.assertj</groupId>
77 <artifactId>assertj-core</artifactId>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040081 <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 Dragosha974aa02017-02-14 19:31:53 -050090
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040091 <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 -->
HOCKLA79e69312019-12-11 10:24:44 -0600108 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400109 <includeResources>true</includeResources>
110 <includeTestSourceDirectory>true</includeTestSourceDirectory>
111 <includeTestResources>true</includeTestResources>
112 <excludes>
113 </excludes>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400114 <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>
liamfallon3073f502019-12-04 10:24:58 +0000132 <!--This plugin's configuration is used to store Eclipse m2e settings
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400133 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>
liamfallon2f72ab62018-10-31 15:23:33 +0000155 <ignore />
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400156 </action>
157 </pluginExecution>
158 </pluginExecutions>
159 </lifecycleMappingMetadata>
160 </configuration>
161 </plugin>
162 </plugins>
163 </pluginManagement>
164 </build>
Pamela Dragosh59b6c042017-03-10 11:45:59 -0500165</project>