blob: a9b10c8e81be80e9794b7ca5e1e3db4e2d1ef8d9 [file] [log] [blame]
Tomasz Golabek967a1202019-03-19 11:37:28 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.onap.sdc.common</groupId>
9 <artifactId>onap-generic-artifact-browser</artifactId>
10 <version>1.4.0-SNAPSHOT</version>
11 </parent>
12
13 <artifactId>onap-generic-artifact-browser-component-tests</artifactId>
14
15 <properties>
16 <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 </properties>
19
20 <dependencies>
21 <!--tested packages-->
22 <dependency>
23 <groupId>org.onap.sdc.common</groupId>
24 <artifactId>onap-generic-artifact-browser-service</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27
28 <!--cucumber-->
29 <dependency>
30 <groupId>io.cucumber</groupId>
31 <artifactId>cucumber-java</artifactId>
32 <version>${cucumber.version}</version>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>io.cucumber</groupId>
37 <artifactId>cucumber-junit</artifactId>
38 <version>${cucumber.version}</version>
39 <scope>test</scope>
40 </dependency>
41
42 </dependencies>
43
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-compiler-plugin</artifactId>
49 <version>${maven-compiler-plugin.version}</version>
50 <configuration>
51 <encoding>${project.build.sourceEncoding}</encoding>
52 <source>8</source>
53 <target>8</target>
54 <compilerArgument>-Werror</compilerArgument>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59</project>