blob: 9a25c0004fe3f0410605c66c9962565203b6cb03 [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 Hahnbf2cc292018-02-13 09:19:43 -05005 Copyright (C) 2017-2018 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
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23
24 <modelVersion>4.0.0</modelVersion>
25
Pamela Dragosha974aa02017-02-14 19:31:53 -050026 <artifactId>integrity-monitor</artifactId>
27
28 <packaging>jar</packaging>
29
30 <parent>
Guo Ruijingf8a620d2017-07-28 08:21:14 +000031 <groupId>org.onap.policy.common</groupId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050032 <artifactId>common-modules</artifactId>
liamfallon6f69d792018-06-05 15:41:08 +010033 <version>1.3.0-SNAPSHOT</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050034 </parent>
35
36 <name>Integrity Monitor</name>
Jim Hahn37b7d292018-06-21 15:43:32 -040037
38 <properties>
39 <powermock.version>1.6.6</powermock.version>
40 </properties>
41
Pamela Dragosha974aa02017-02-14 19:31:53 -050042 <dependencies>
43 <dependency>
Jim Hahn37b7d292018-06-21 15:43:32 -040044 <groupId>org.powermock</groupId>
45 <artifactId>powermock-api-mockito</artifactId>
46 <version>${powermock.version}</version>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
Pamela Dragosh29c8d902018-02-19 11:37:11 -050050 <groupId>junit</groupId>
51 <artifactId>junit</artifactId>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
Pamela Dragosha974aa02017-02-14 19:31:53 -050055 <groupId>log4j</groupId>
56 <artifactId>log4j</artifactId>
Pamela Dragosh29c8d902018-02-19 11:37:11 -050057 </dependency>
58 <dependency>
59 <groupId>com.h2database</groupId>
60 <artifactId>h2</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.eclipse.persistence</groupId>
64 <artifactId>javax.persistence</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.eclipse.persistence</groupId>
68 <artifactId>eclipselink</artifactId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050069 </dependency>
70 <dependency>
Jim Hahnbf2cc292018-02-13 09:19:43 -050071 <groupId>org.onap.policy.common</groupId>
72 <artifactId>utils</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
Jim Hahn82bc8f52018-02-05 12:05:26 -050076 <groupId>org.onap.policy.common</groupId>
77 <artifactId>utils-test</artifactId>
Jim Hahnbf2cc292018-02-13 09:19:43 -050078 <version>${project.version}</version>
Jim Hahn82bc8f52018-02-05 12:05:26 -050079 <scope>test</scope>
80 </dependency>
Pamela Dragosha974aa02017-02-14 19:31:53 -050081 <dependency>
Pamela Dragosh29c8d902018-02-19 11:37:11 -050082 <groupId>org.onap.policy.common</groupId>
83 <artifactId>ONAP-Logging</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
Pamela Dragosha974aa02017-02-14 19:31:53 -050087 <groupId>commons-logging</groupId>
88 <artifactId>commons-logging</artifactId>
89 <version>1.1.3</version>
90 <scope>test</scope>
Pamela Dragosha974aa02017-02-14 19:31:53 -050091 </dependency>
92 </dependencies>
93
94 <build>
95 <pluginManagement>
96 <plugins>
97 <!--This plugin's configuration is used to store Eclipse m2e settings
98 only. It has no influence on the Maven build itself. -->
99 <plugin>
100 <groupId>org.eclipse.m2e</groupId>
101 <artifactId>lifecycle-mapping</artifactId>
102 <version>1.0.0</version>
103 <configuration>
104 <lifecycleMappingMetadata>
105 <pluginExecutions>
106 <pluginExecution>
107 <pluginExecutionFilter>
108 <groupId>org.jacoco</groupId>
109 <artifactId>
110 jacoco-maven-plugin
111 </artifactId>
112 <versionRange>
113 [0.7.1.201405082137,)
114 </versionRange>
115 <goals>
116 <goal>prepare-agent</goal>
117 </goals>
118 </pluginExecutionFilter>
119 <action>
120 <ignore></ignore>
121 </action>
122 </pluginExecution>
123 </pluginExecutions>
124 </lifecycleMappingMetadata>
125 </configuration>
126 </plugin>
127 </plugins>
128 </pluginManagement>
129 </build>
130</project>