| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.onap.sdc.common</groupId> |
| <artifactId>onap-generic-artifact-browser</artifactId> |
| <version>1.4.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>onap-generic-artifact-browser-component-tests</artifactId> |
| |
| <properties> |
| <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <dependencies> |
| <!--tested packages--> |
| <dependency> |
| <groupId>org.onap.sdc.common</groupId> |
| <artifactId>onap-generic-artifact-browser-service</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <!--cucumber--> |
| <dependency> |
| <groupId>io.cucumber</groupId> |
| <artifactId>cucumber-java</artifactId> |
| <version>${cucumber.version}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.cucumber</groupId> |
| <artifactId>cucumber-junit</artifactId> |
| <version>${cucumber.version}</version> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>${maven-compiler-plugin.version}</version> |
| <configuration> |
| <encoding>${project.build.sourceEncoding}</encoding> |
| <source>8</source> |
| <target>8</target> |
| <compilerArgument>-Werror</compilerArgument> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |