diff options
author | ryanSheehan <ryansheehan.est@gmail.com> | 2021-06-18 16:47:38 +0100 |
---|---|---|
committer | ryanSheehan <ryansheehan.est@gmail.com> | 2021-06-18 18:30:31 +0100 |
commit | d28aa873fb503794583ec61a851a5232431d17b2 (patch) | |
tree | 39db078b321b3f60bb63b986b54f941515352063 /participant/participant-impl/pom.xml | |
parent | 18526e9a01fc0b0e085d2a6e3457957e6392ce27 (diff) |
Re clean up clamp project properties and dependencies
Remove version duplication from clamp projects runtime, dcae
kubernetes, policy participant and simulator
Issue-ID: POLICY-3308
Change-Id: I316b3b0313608c5d17c9692f44d653afabc2d596
Signed-off-by: ryanSheehan <ryansheehan.est@gmail.com>
Diffstat (limited to 'participant/participant-impl/pom.xml')
-rw-r--r-- | participant/participant-impl/pom.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/participant/participant-impl/pom.xml b/participant/participant-impl/pom.xml index 8afd81045..ecc16e633 100644 --- a/participant/participant-impl/pom.xml +++ b/participant/participant-impl/pom.xml @@ -41,6 +41,37 @@ <module>participant-impl-kubernetes</module> </modules> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <version>${version.springboot}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-webflux</artifactId> + <version>${version.springboot}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + <version>${version.springboot}</version> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <version>${version.springboot}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security</artifactId> + <version>${version.springboot}</version> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.onap.policy.clamp.participant</groupId> |