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