blob: b4a019a851327a4da23a6899b18fe0b106ac59d3 [file] [log] [blame]
AvinashS3c4d26e2017-09-07 13:46:54 +00001<?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 Wagantall231faef2018-03-26 16:21:09 -070018 <version>1.1.0</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000019 <relativePath>oparent</relativePath>
20 </parent>
21 <modelVersion>4.0.0</modelVersion>
22 <groupId>org.onap.vnfsdk.validation</groupId>
23 <artifactId>validation-csar</artifactId>
Murali-Pf854b442018-04-25 15:52:53 +053024 <version>1.1.2</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000025 <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>
AvinashSd77a91e2017-09-18 07:01:46 +000050 <!-- 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>
AvinashS3c4d26e2017-09-07 13:46:54 +000057 <dependency>
AvinashSa04f31a2017-09-20 10:13:15 +000058 <groupId>org.yaml</groupId>
59 <artifactId>snakeyaml</artifactId>
60 <version>1.18</version>
61 </dependency>
62 <dependency>
AvinashS3c4d26e2017-09-07 13:46:54 +000063 <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 S9ded7f02018-02-22 07:32:14 +000076 <version>2.9.4</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000077 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
AvinashS3c4d26e2017-09-07 13:46:54 +000080 <artifactId>jackson-annotations</artifactId>
Avinash S9ded7f02018-02-22 07:32:14 +000081 <version>2.9.4</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000082 </dependency>
83 <dependency>
84 <groupId>com.google.code.gson</groupId>
85 <artifactId>gson</artifactId>
Murali-P14d306c2018-04-25 11:11:17 +053086 <version>2.8.2</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000087 </dependency>
88 <dependency>
89 <groupId>com.google.guava</groupId>
90 <artifactId>guava</artifactId>
Murali-P14d306c2018-04-25 11:11:17 +053091 <version>20.0</version>
AvinashS3c4d26e2017-09-07 13:46:54 +000092 </dependency>
Murali-P14d306c2018-04-25 11:11:17 +053093
AvinashS13d2f672017-09-14 13:37:28 +000094 <dependency>
95 <groupId>junit</groupId>
96 <artifactId>junit</artifactId>
97 <version>4.12</version>
98 <scope>test</scope>
99 </dependency>
AvinashS2d896d92017-09-21 19:21:01 +0530100 <dependency>
101 <groupId>org.apache.commons</groupId>
102 <artifactId>commons-lang3</artifactId>
Murali-P14d306c2018-04-25 11:11:17 +0530103 <version>3.2.1</version>
AvinashS2d896d92017-09-21 19:21:01 +0530104 </dependency>
AvinashS4fad64a2017-10-12 14:23:42 +0530105 <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>
AvinashS3c4d26e2017-09-07 13:46:54 +0000115 </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>