blob: 9265df5175fb06cadf6ce68eb500e4be6c616d6d [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<!--
2 ============LICENSE_START=======================================================
3 ECOMP Policy Engine - Common Modules
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
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
26 <groupId>org.openecomp.policy.common</groupId>
27 <artifactId>integrity-monitor</artifactId>
28
29 <packaging>jar</packaging>
30
31 <parent>
32 <groupId>org.openecomp.policy.common</groupId>
33 <artifactId>common-modules</artifactId>
34 <version>1.0.0-SNAPSHOT</version>
35 </parent>
36
37 <name>Integrity Monitor</name>
38
39 <dependencies>
40 <dependency>
41 <groupId>log4j</groupId>
42 <artifactId>log4j</artifactId>
43 <version>1.2.17</version>
44 </dependency>
45 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>4.11</version>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>commons-logging</groupId>
53 <artifactId>commons-logging</artifactId>
54 <version>1.1.3</version>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.eclipse.persistence</groupId>
59 <artifactId>javax.persistence</artifactId>
60 <version>2.1.0</version>
61 </dependency>
62 <dependency>
63 <groupId>org.eclipse.persistence</groupId>
64 <artifactId>eclipselink</artifactId>
65 <version>2.6.0</version>
66 </dependency>
67 <dependency>
68 <groupId>com.h2database</groupId>
69 <artifactId>h2</artifactId>
70 <version>[1.4.186,)</version>
71 </dependency>
72 <dependency>
73 <groupId>org.openecomp.policy.common</groupId>
74 <artifactId>ECOMP-Logging</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 </dependencies>
78
79 <build>
80 <pluginManagement>
81 <plugins>
82 <!--This plugin's configuration is used to store Eclipse m2e settings
83 only. It has no influence on the Maven build itself. -->
84 <plugin>
85 <groupId>org.eclipse.m2e</groupId>
86 <artifactId>lifecycle-mapping</artifactId>
87 <version>1.0.0</version>
88 <configuration>
89 <lifecycleMappingMetadata>
90 <pluginExecutions>
91 <pluginExecution>
92 <pluginExecutionFilter>
93 <groupId>org.jacoco</groupId>
94 <artifactId>
95 jacoco-maven-plugin
96 </artifactId>
97 <versionRange>
98 [0.7.1.201405082137,)
99 </versionRange>
100 <goals>
101 <goal>prepare-agent</goal>
102 </goals>
103 </pluginExecutionFilter>
104 <action>
105 <ignore></ignore>
106 </action>
107 </pluginExecution>
108 </pluginExecutions>
109 </lifecycleMappingMetadata>
110 </configuration>
111 </plugin>
112 </plugins>
113 </pluginManagement>
114 </build>
115</project>