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" |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 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> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 6 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 7 | <parent> |
| 8 | <groupId>org.onap.sdc.common</groupId> |
| 9 | <artifactId>onap-generic-artifact-browser</artifactId> |
| 10 | <version>1.7.0-SNAPSHOT</version> |
| 11 | </parent> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 12 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 13 | <artifactId>onap-generic-artifact-browser-component-tests</artifactId> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 14 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 15 | <dependencies> |
| 16 | <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API --> |
| 17 | <dependency> |
| 18 | <groupId>org.junit.jupiter</groupId> |
| 19 | <artifactId>junit-jupiter-engine</artifactId> |
| 20 | <version>${junitJupiter.version}</version> |
| 21 | <scope>test</scope> |
| 22 | </dependency> |
| 23 | <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API --> |
| 24 | <dependency> |
| 25 | <groupId>org.junit.vintage</groupId> |
| 26 | <artifactId>junit-vintage-engine</artifactId> |
| 27 | <version>${junitJupiter.version}</version> |
| 28 | </dependency> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 29 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 30 | <!--tested packages--> |
| 31 | <dependency> |
| 32 | <groupId>org.onap.sdc.common</groupId> |
| 33 | <artifactId>onap-generic-artifact-browser-service</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | </dependency> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 36 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 37 | <!--cucumber--> |
| 38 | <dependency> |
| 39 | <groupId>io.cucumber</groupId> |
| 40 | <artifactId>cucumber-java</artifactId> |
| 41 | <version>${cucumber.version}</version> |
| 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>io.cucumber</groupId> |
| 46 | <artifactId>cucumber-junit</artifactId> |
| 47 | <version>${cucumber.version}</version> |
| 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | |
| 51 | </dependencies> |
Tomasz Golabek | 967a120 | 2019-03-19 11:37:28 +0100 | [diff] [blame] | 52 | </project> |