blob: 3d8c9bc8c18487d6315e5b3e4186fd20f888889f [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 Hahnd6aa3fa2019-06-21 13:19:31 -04005 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
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040010
Pamela Dragosha974aa02017-02-14 19:31:53 -050011 http://www.apache.org/licenses/LICENSE-2.0
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040012
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
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040021<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">
Pamela Dragosha974aa02017-02-14 19:31:53 -050023
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040024 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha974aa02017-02-14 19:31:53 -050025
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040026 <artifactId>integrity-monitor</artifactId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050027
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040028 <packaging>jar</packaging>
Pamela Dragosha974aa02017-02-14 19:31:53 -050029
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040030 <parent>
31 <groupId>org.onap.policy.common</groupId>
32 <artifactId>common-modules</artifactId>
33 <version>1.5.1-SNAPSHOT</version>
34 </parent>
Pamela Dragosha974aa02017-02-14 19:31:53 -050035
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040036 <name>Integrity Monitor</name>
37
38 <dependencies>
39 <dependency>
Jim Hahn37b7d292018-06-21 15:43:32 -040040 <groupId>org.powermock</groupId>
41 <artifactId>powermock-api-mockito</artifactId>
Jim Hahn37b7d292018-06-21 15:43:32 -040042 <scope>test</scope>
43 </dependency>
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040044 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>log4j</groupId>
51 <artifactId>log4j</artifactId>
52 </dependency>
53 <dependency>
54 <groupId>com.h2database</groupId>
55 <artifactId>h2</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.eclipse.persistence</groupId>
59 <artifactId>javax.persistence</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>org.eclipse.persistence</groupId>
63 <artifactId>eclipselink</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.onap.policy.common</groupId>
67 <artifactId>utils</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.policy.common</groupId>
72 <artifactId>utils-test</artifactId>
73 <version>${project.version}</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.assertj</groupId>
78 <artifactId>assertj-core</artifactId>
79 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.onap.policy.common</groupId>
83 <artifactId>ONAP-Logging</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>commons-logging</groupId>
88 <artifactId>commons-logging</artifactId>
89 <version>1.1.3</version>
90 <scope>test</scope>
91 </dependency>
92 </dependencies>
Pamela Dragosha974aa02017-02-14 19:31:53 -050093
Jim Hahnd6aa3fa2019-06-21 13:19:31 -040094 <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 />
121 </action>
122 </pluginExecution>
123 </pluginExecutions>
124 </lifecycleMappingMetadata>
125 </configuration>
126 </plugin>
127 </plugins>
128 </pluginManagement>
129 </build>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500130</project>