vempo | 933cdbd | 2018-10-25 19:27:22 +0300 | [diff] [blame] | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 4 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 5 | <modelVersion>4.0.0</modelVersion> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 6 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 7 | <name>onap-configuration-management-api</name> |
| 8 | <artifactId>onap-configuration-management-api</artifactId> |
vempo | decd2df | 2018-07-23 19:07:37 +0300 | [diff] [blame] | 9 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 10 | <parent> |
| 11 | <artifactId>onap-common-configuration-management</artifactId> |
| 12 | <groupId>org.onap.sdc.common</groupId> |
| 13 | <version>1.7.0-SNAPSHOT</version> |
| 14 | </parent> |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 15 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame^] | 16 | <dependencies> |
| 17 | <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API --> |
| 18 | <dependency> |
| 19 | <groupId>org.junit.jupiter</groupId> |
| 20 | <artifactId>junit-jupiter-engine</artifactId> |
| 21 | <version>${junitJupiter.version}</version> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API --> |
| 25 | <dependency> |
| 26 | <groupId>org.junit.vintage</groupId> |
| 27 | <artifactId>junit-vintage-engine</artifactId> |
| 28 | <version>${junitJupiter.version}</version> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <groupId>org.mockito</groupId> |
| 33 | <artifactId>mockito-core</artifactId> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | </dependencies> |
vempo | 2074ab2 | 2018-10-28 14:45:46 +0200 | [diff] [blame] | 37 | |
amitjai | 42c920b | 2018-04-27 13:28:57 +0530 | [diff] [blame] | 38 | </project> |