Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame^] | 1 | <?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> |