blob: cc3899640cd849798e0bd8dd4fc3a9d518c9b9b7 [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>
58 <groupId>com.eclipsesource.jaxrs</groupId>
59 <artifactId>consumer</artifactId>
60 <exclusions>
61 <exclusion>
62 <groupId>com.eclipsesource.jaxrs</groupId>
63 <artifactId>jersey-all</artifactId>
64 </exclusion>
65 </exclusions>
66 <version>5.0</version>
67 </dependency>
68 <dependency>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-core</artifactId>
71 <version>2.5.4</version>
72 </dependency>
73 <dependency>
74 <groupId>com.fasterxml.jackson.core</groupId>
75 <artifactId>jackson-databind</artifactId>
76 <version>2.5.4</version>
77 </dependency>
78 <dependency>
79 <groupId>com.fasterxml.jackson.core</groupId>
80 <artifactId>jackson-annotations</artifactId>
81 <version>2.5.4</version>
82 </dependency>
83 <dependency>
84 <groupId>com.google.code.gson</groupId>
85 <artifactId>gson</artifactId>
86 <version>2.2.4</version>
87 </dependency>
88 <dependency>
89 <groupId>com.google.guava</groupId>
90 <artifactId>guava</artifactId>
91 <version>11.0.2</version>
92 </dependency>
93 <dependency>
94 <groupId>com.google.collections</groupId>
95 <artifactId>google-collections</artifactId>
96 <version>1.0-rc1</version>
97 </dependency>
AvinashS13d2f672017-09-14 13:37:28 +000098 <dependency>
99 <groupId>junit</groupId>
100 <artifactId>junit</artifactId>
101 <version>4.12</version>
102 <scope>test</scope>
103 </dependency>
AvinashS3c4d26e2017-09-07 13:46:54 +0000104 </dependencies>
105
106
107 <profiles>
108 <profile>
109 <id>all-tests</id>
110 <properties>
111 <build.profile.id>all-tests</build.profile.id>
112 <skip.unit.tests>true</skip.unit.tests>
113 </properties>
114 </profile>
115 </profiles>
116
117
118 <build>
119 <finalName>${project.artifactId}-${project.version}</finalName>
120
121 <plugins>
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-jar-plugin</artifactId>
125 <version>3.0.2</version>
126 <configuration>
127 <archive>
128 <manifest>
129 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
130 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
131 </manifest>
132 </archive>
133 </configuration>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-compiler-plugin</artifactId>
138 <version>3.1</version>
139 <configuration>
140 <source>1.8</source>
141 <target>1.8</target>
142 </configuration>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-jar-plugin</artifactId>
147 </plugin>
148
149 <plugin>
150 <artifactId>maven-war-plugin</artifactId>
151 <configuration>
152 <failOnMissingWebXml>false</failOnMissingWebXml>
153 </configuration>
154 </plugin>
155 </plugins>
156 </build>
157</project>