AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved. |
| 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 4 | use this file except in compliance with the License. You may obtain a copy |
| 5 | of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 6 | by applicable law or agreed to in writing, software distributed under the |
| 7 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 8 | OF ANY KIND, either express or implied. See the License for the specific |
| 9 | language governing permissions and limitations under the License. --> |
| 10 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 11 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 12 | <!-- <parent> <groupId>org.onap.csarvalidation</groupId> <artifactId>csarvalidation</artifactId> |
| 13 | <version>1.0.0-SNAPSHOT</version> </parent> --> |
| 14 | |
| 15 | <parent> |
| 16 | <groupId>org.onap.oparent</groupId> |
| 17 | <artifactId>oparent</artifactId> |
Jessica Wagantall | 231faef | 2018-03-26 16:21:09 -0700 | [diff] [blame] | 18 | <version>1.1.0</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 19 | <relativePath>oparent</relativePath> |
| 20 | </parent> |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <groupId>org.onap.vnfsdk.validation</groupId> |
| 23 | <artifactId>validation-csar</artifactId> |
Murali-P | f854b44 | 2018-04-25 15:52:53 +0530 | [diff] [blame] | 24 | <version>1.1.2</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 25 | <packaging>jar</packaging> |
| 26 | <name>csarvalidation/validation</name> |
| 27 | |
| 28 | <repositories> |
| 29 | <!-- <repository> <id>open-o</id> <name>OPEN-O repository</name> <url>https://nexus.open-o.org/content/repositories/public/</url> |
| 30 | </repository> --> |
| 31 | <repository> |
| 32 | <id>google-collections</id> |
| 33 | <name>Google collections repository</name> |
| 34 | <url>https://mvnrepository.com/artifact/com.google.collections/google-collections</url> |
| 35 | </repository> |
| 36 | <repository> |
| 37 | <id>onap</id> |
| 38 | <name>ONAP repository</name> |
| 39 | <url>https://nexus.onap.org/content/repositories/public/</url> |
| 40 | </repository> |
| 41 | </repositories> |
| 42 | |
| 43 | |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.slf4j</groupId> |
| 47 | <artifactId>slf4j-api</artifactId> |
| 48 | <version>1.6.4</version> |
| 49 | </dependency> |
AvinashS | d77a91e | 2017-09-18 07:01:46 +0000 | [diff] [blame] | 50 | <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> |
| 51 | <dependency> |
| 52 | <groupId>org.slf4j</groupId> |
| 53 | <artifactId>slf4j-simple</artifactId> |
| 54 | <version>1.6.4</version> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 57 | <dependency> |
AvinashS | a04f31a | 2017-09-20 10:13:15 +0000 | [diff] [blame] | 58 | <groupId>org.yaml</groupId> |
| 59 | <artifactId>snakeyaml</artifactId> |
| 60 | <version>1.18</version> |
| 61 | </dependency> |
| 62 | <dependency> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 63 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 64 | <artifactId>consumer</artifactId> |
| 65 | <exclusions> |
| 66 | <exclusion> |
| 67 | <groupId>com.eclipsesource.jaxrs</groupId> |
| 68 | <artifactId>jersey-all</artifactId> |
| 69 | </exclusion> |
| 70 | </exclusions> |
| 71 | <version>5.0</version> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>com.fasterxml.jackson.core</groupId> |
| 75 | <artifactId>jackson-core</artifactId> |
Avinash S | 9ded7f0 | 2018-02-22 07:32:14 +0000 | [diff] [blame] | 76 | <version>2.9.4</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>com.fasterxml.jackson.core</groupId> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 80 | <artifactId>jackson-annotations</artifactId> |
Avinash S | 9ded7f0 | 2018-02-22 07:32:14 +0000 | [diff] [blame] | 81 | <version>2.9.4</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>com.google.code.gson</groupId> |
| 85 | <artifactId>gson</artifactId> |
Murali-P | 14d306c | 2018-04-25 11:11:17 +0530 | [diff] [blame] | 86 | <version>2.8.2</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>com.google.guava</groupId> |
| 90 | <artifactId>guava</artifactId> |
Murali-P | 14d306c | 2018-04-25 11:11:17 +0530 | [diff] [blame] | 91 | <version>20.0</version> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 92 | </dependency> |
Murali-P | 14d306c | 2018-04-25 11:11:17 +0530 | [diff] [blame] | 93 | |
AvinashS | 13d2f67 | 2017-09-14 13:37:28 +0000 | [diff] [blame] | 94 | <dependency> |
| 95 | <groupId>junit</groupId> |
| 96 | <artifactId>junit</artifactId> |
| 97 | <version>4.12</version> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
AvinashS | 2d896d9 | 2017-09-21 19:21:01 +0530 | [diff] [blame] | 100 | <dependency> |
| 101 | <groupId>org.apache.commons</groupId> |
| 102 | <artifactId>commons-lang3</artifactId> |
Murali-P | 14d306c | 2018-04-25 11:11:17 +0530 | [diff] [blame] | 103 | <version>3.2.1</version> |
AvinashS | 2d896d9 | 2017-09-21 19:21:01 +0530 | [diff] [blame] | 104 | </dependency> |
AvinashS | 4fad64a | 2017-10-12 14:23:42 +0530 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>org.apache.commons</groupId> |
| 107 | <artifactId>commons-io</artifactId> |
| 108 | <version>1.3.2</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>commons-io</groupId> |
| 112 | <artifactId>commons-io</artifactId> |
| 113 | <version>2.5</version> |
| 114 | </dependency> |
AvinashS | 3c4d26e | 2017-09-07 13:46:54 +0000 | [diff] [blame] | 115 | </dependencies> |
| 116 | |
| 117 | |
| 118 | <profiles> |
| 119 | <profile> |
| 120 | <id>all-tests</id> |
| 121 | <properties> |
| 122 | <build.profile.id>all-tests</build.profile.id> |
| 123 | <skip.unit.tests>true</skip.unit.tests> |
| 124 | </properties> |
| 125 | </profile> |
| 126 | </profiles> |
| 127 | |
| 128 | |
| 129 | <build> |
| 130 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 131 | |
| 132 | <plugins> |
| 133 | <plugin> |
| 134 | <groupId>org.apache.maven.plugins</groupId> |
| 135 | <artifactId>maven-jar-plugin</artifactId> |
| 136 | <version>3.0.2</version> |
| 137 | <configuration> |
| 138 | <archive> |
| 139 | <manifest> |
| 140 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 141 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| 142 | </manifest> |
| 143 | </archive> |
| 144 | </configuration> |
| 145 | </plugin> |
| 146 | <plugin> |
| 147 | <groupId>org.apache.maven.plugins</groupId> |
| 148 | <artifactId>maven-compiler-plugin</artifactId> |
| 149 | <version>3.1</version> |
| 150 | <configuration> |
| 151 | <source>1.8</source> |
| 152 | <target>1.8</target> |
| 153 | </configuration> |
| 154 | </plugin> |
| 155 | <plugin> |
| 156 | <groupId>org.apache.maven.plugins</groupId> |
| 157 | <artifactId>maven-jar-plugin</artifactId> |
| 158 | </plugin> |
| 159 | |
| 160 | <plugin> |
| 161 | <artifactId>maven-war-plugin</artifactId> |
| 162 | <configuration> |
| 163 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 164 | </configuration> |
| 165 | </plugin> |
| 166 | </plugins> |
| 167 | </build> |
| 168 | </project> |