vempo | 9125b48 | 2018-10-24 17:18:03 +0300 | [diff] [blame] | 1 | <!-- |
| 2 | ~ Copyright © 2016-2018 European Support Limited |
| 3 | ~ |
| 4 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ~ you may not use this file except in compliance with the License. |
| 6 | ~ You may obtain a copy of the License at |
| 7 | ~ |
| 8 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ~ |
| 10 | ~ Unless required by applicable law or agreed to in writing, software |
| 11 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ~ See the License for the specific language governing permissions and |
| 14 | ~ limitations under the License. |
| 15 | --> |
| 16 | |
vempo | 933cdbd | 2018-10-25 19:27:22 +0300 | [diff] [blame^] | 17 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xmlns="http://maven.apache.org/POM/4.0.0" |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 20 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 21 | <modelVersion>4.0.0</modelVersion> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 22 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 23 | <name>onap-configuration-management-core</name> |
| 24 | <artifactId>onap-configuration-management-core</artifactId> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 25 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 26 | <parent> |
| 27 | <artifactId>onap-common-configuration-management</artifactId> |
| 28 | <groupId>org.onap.sdc.common</groupId> |
Michael Lando | 04a5bef | 2018-10-23 01:32:15 +0300 | [diff] [blame] | 29 | <version>1.3.1-SNAPSHOT</version> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 30 | </parent> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 31 | |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>com.fasterxml.jackson.core</groupId> |
| 35 | <artifactId>jackson-databind</artifactId> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 39 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 40 | <version>${jackson.version}</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.apache.commons</groupId> |
| 44 | <artifactId>commons-configuration2</artifactId> |
| 45 | <version>2.1</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>commons-logging</groupId> |
| 49 | <artifactId>commons-logging</artifactId> |
| 50 | <version>${commons-logging}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>commons-beanutils</groupId> |
| 54 | <artifactId>commons-beanutils</artifactId> |
| 55 | <version>${commons.beanutils.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.apache.commons</groupId> |
| 59 | <artifactId>commons-lang3</artifactId> |
| 60 | <version>${commons.lang3.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 63 | <groupId>commons-io</groupId> |
| 64 | <artifactId>commons-io</artifactId> |
| 65 | <version>${commons.io.version}</version> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>net.sf.corn</groupId> |
| 69 | <artifactId>corn-cps</artifactId> |
| 70 | <version>1.1.7</version> |
| 71 | <exclusions> |
| 72 | <exclusion> |
| 73 | <groupId>com.sun</groupId> |
| 74 | <artifactId>tools</artifactId> |
| 75 | </exclusion> |
| 76 | </exclusions> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>com.virtlink.commons</groupId> |
| 80 | <artifactId>commons-configuration2-jackson</artifactId> |
| 81 | <version>0.6.1</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.apache.logging.log4j</groupId> |
| 85 | <artifactId>log4j-core</artifactId> |
| 86 | <version>2.7</version> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.onap.sdc.common</groupId> |
| 90 | <artifactId>onap-configuration-management-api</artifactId> |
| 91 | <version>${project.version}</version> |
| 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>javax.servlet</groupId> |
| 95 | <artifactId>javax.servlet-api</artifactId> |
| 96 | <version>${servlet-api.version}</version> |
| 97 | <scope>provided</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>com.fasterxml.jackson.core</groupId> |
| 101 | <artifactId>jackson-annotations</artifactId> |
| 102 | <version>2.8.1</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>junit</groupId> |
| 106 | <artifactId>junit</artifactId> |
| 107 | <scope>test</scope> |
vempo | 9125b48 | 2018-10-24 17:18:03 +0300 | [diff] [blame] | 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.slf4j</groupId> |
| 111 | <artifactId>slf4j-api</artifactId> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 112 | </dependency> |
| 113 | </dependencies> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 114 | |
vempo | 32ff3e3 | 2018-10-24 06:18:06 +0000 | [diff] [blame] | 115 | <build> |
| 116 | <plugins> |
| 117 | <plugin> |
| 118 | <groupId>org.apache.maven.plugins</groupId> |
| 119 | <artifactId>maven-surefire-plugin</artifactId> |
| 120 | <version>${mvn.surefire.version}</version> |
| 121 | <configuration> |
vempo | 9125b48 | 2018-10-24 17:18:03 +0300 | [diff] [blame] | 122 | <!-- |
| 123 | For some reason running without JaCoCo causes test failures. |
| 124 | Making tests depend on JaCoCo until the problem is fixed. |
| 125 | --> |
| 126 | <skipTests>${jacoco.skip}</skipTests> |
vempo | 32ff3e3 | 2018-10-24 06:18:06 +0000 | [diff] [blame] | 127 | <systemPropertyVariables> |
| 128 | <config.location>${project.basedir}/src/test/resources</config.location> |
| 129 | <node.config.location>${user.home}/TestResources</node.config.location> |
| 130 | </systemPropertyVariables> |
| 131 | <includes> |
| 132 | <include>**/TestCMSuite.java</include> |
| 133 | </includes> |
| 134 | </configuration> |
| 135 | </plugin> |
| 136 | </plugins> |
| 137 | </build> |
| 138 | |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 139 | </project> |