blob: 1a916774c8da88c9ef046e82eb9401d2f5fda271 [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>
18 <version>1.0.0-SNAPSHOT</version>
19 <relativePath>oparent</relativePath>
20 </parent>
21 <modelVersion>4.0.0</modelVersion>
22 <groupId>org.onap.vnfsdk.validation</groupId>
23 <artifactId>validation-csar</artifactId>
24 <version>1.0.0-SNAPSHOT</version>
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>
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>
76 <version>2.5.4</version>
77 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-databind</artifactId>
81 <version>2.5.4</version>
82 </dependency>
83 <dependency>
84 <groupId>com.fasterxml.jackson.core</groupId>
85 <artifactId>jackson-annotations</artifactId>
86 <version>2.5.4</version>
87 </dependency>
88 <dependency>
89 <groupId>com.google.code.gson</groupId>
90 <artifactId>gson</artifactId>
91 <version>2.2.4</version>
92 </dependency>
93 <dependency>
94 <groupId>com.google.guava</groupId>
95 <artifactId>guava</artifactId>
96 <version>11.0.2</version>
97 </dependency>
98 <dependency>
99 <groupId>com.google.collections</groupId>
100 <artifactId>google-collections</artifactId>
101 <version>1.0-rc1</version>
102 </dependency>
AvinashS13d2f672017-09-14 13:37:28 +0000103 <dependency>
104 <groupId>junit</groupId>
105 <artifactId>junit</artifactId>
106 <version>4.12</version>
107 <scope>test</scope>
108 </dependency>
AvinashS2d896d92017-09-21 19:21:01 +0530109 <dependency>
110 <groupId>org.apache.commons</groupId>
111 <artifactId>commons-lang3</artifactId>
112 <version>3.0</version>
113 </dependency>
AvinashS4fad64a2017-10-12 14:23:42 +0530114 <dependency>
115 <groupId>org.apache.commons</groupId>
116 <artifactId>commons-io</artifactId>
117 <version>1.3.2</version>
118 </dependency>
119 <dependency>
120 <groupId>commons-io</groupId>
121 <artifactId>commons-io</artifactId>
122 <version>2.5</version>
123 </dependency>
AvinashS3c4d26e2017-09-07 13:46:54 +0000124 </dependencies>
125
126
127 <profiles>
128 <profile>
129 <id>all-tests</id>
130 <properties>
131 <build.profile.id>all-tests</build.profile.id>
132 <skip.unit.tests>true</skip.unit.tests>
133 </properties>
134 </profile>
135 </profiles>
136
137
138 <build>
139 <finalName>${project.artifactId}-${project.version}</finalName>
140
141 <plugins>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-jar-plugin</artifactId>
145 <version>3.0.2</version>
146 <configuration>
147 <archive>
148 <manifest>
149 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
150 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
151 </manifest>
152 </archive>
153 </configuration>
154 </plugin>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-compiler-plugin</artifactId>
158 <version>3.1</version>
159 <configuration>
160 <source>1.8</source>
161 <target>1.8</target>
162 </configuration>
163 </plugin>
164 <plugin>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-jar-plugin</artifactId>
167 </plugin>
168
169 <plugin>
170 <artifactId>maven-war-plugin</artifactId>
171 <configuration>
172 <failOnMissingWebXml>false</failOnMissingWebXml>
173 </configuration>
174 </plugin>
175 </plugins>
176 </build>
177</project>