blob: c662b3d5836736531e89688fa306e6c7fdaf944e [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
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
liamfallon2f72ab62018-10-31 15:23:33 +000021<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 Dragosha974aa02017-02-14 19:31:53 -050022
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040023 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha974aa02017-02-14 19:31:53 -050024
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040025 <artifactId>integrity-audit</artifactId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050026
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040027 <packaging>jar</packaging>
Pamela Dragosha974aa02017-02-14 19:31:53 -050028
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040029 <parent>
30 <groupId>org.onap.policy.common</groupId>
31 <artifactId>common-modules</artifactId>
liamfallon2f72ab62018-10-31 15:23:33 +000032 <version>1.4.0-SNAPSHOT</version>
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040033 </parent>
Pamela Dragosha974aa02017-02-14 19:31:53 -050034
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040035 <name>Integrity Audit</name>
Pamela Dragosha974aa02017-02-14 19:31:53 -050036
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040037 <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 Dragosha974aa02017-02-14 19:31:53 -050080
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -040081 <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 Dragoshaf5e28c2018-09-21 12:48:29 -0400104 <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>
liamfallon2f72ab62018-10-31 15:23:33 +0000145 <ignore />
Pamela Dragoshaf5e28c2018-09-21 12:48:29 -0400146 </action>
147 </pluginExecution>
148 </pluginExecutions>
149 </lifecycleMappingMetadata>
150 </configuration>
151 </plugin>
152 </plugins>
153 </pluginManagement>
154 </build>
Pamela Dragosh59b6c042017-03-10 11:45:59 -0500155</project>