diff options
author | Liam Fallon <liam.fallon@est.tech> | 2021-06-16 08:21:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-06-16 08:21:45 +0000 |
commit | 27d19f181f215624d6f5a2ba27a84e787eb68225 (patch) | |
tree | 470ebd71b8fa8f4e9273160cb5968d50ae5e8862 /participant | |
parent | 399e86d983057304673f701a22b172a69d5aa7dc (diff) | |
parent | d00977cb0e6f96d9762363e8ffc9b3ef0e6f81bf (diff) |
Merge "Remove duplicate properties in clamp repo"
Diffstat (limited to 'participant')
-rw-r--r-- | participant/participant-impl/participant-impl-dcae/pom.xml | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/participant/participant-impl/participant-impl-dcae/pom.xml b/participant/participant-impl/participant-impl-dcae/pom.xml index 50a2a526d..714f1551c 100644 --- a/participant/participant-impl/participant-impl-dcae/pom.xml +++ b/participant/participant-impl/participant-impl-dcae/pom.xml @@ -31,19 +31,14 @@ <artifactId>policy-clamp-participant-impl-dcae</artifactId> <name>${project.artifactId}</name> <description>DCAE participant, that allows DCAE to partake in control loops</description> - - <properties> - <mockserver.version>5.11.2</mockserver.version> - <springboot.version>2.4.4</springboot.version> - </properties> - + <dependencyManagement> <dependencies> <!-- Spring Boot BOM --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> - <version>${springboot.version}</version> + <version>${version.springboot}</version> <type>pom</type> <scope>import</scope> </dependency> @@ -67,13 +62,13 @@ <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-netty</artifactId> - <version>${mockserver.version}</version> + <version>${version.mockserver}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-client-java</artifactId> - <version>${mockserver.version}</version> + <version>${version.mockserver}</version> <scope>test</scope> </dependency> </dependencies> @@ -83,7 +78,7 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> - <version>${springboot.version}</version> + <version>${version.springboot}</version> <executions> <execution> <goals> |