diff options
author | liamfallon <liam.fallon@est.tech> | 2021-06-25 13:43:58 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2021-06-28 10:11:27 +0100 |
commit | 31d5157f5d55e2b3b0cf35820df80c18f4e5292b (patch) | |
tree | 2c901853b1e1e165d7f5cdd59e4fb68cb4c29a0f /integration | |
parent | fbf1f26654e36ea5aa9d30bebcb7779000f1750a (diff) |
Update parent pom to fix springboot/checkstyle
This patch swithes the Policy Framework to use the snapshot version of
oparent.
The spring boot dependency management is added.
Issue-ID: POLICY-3209
Change-Id: Ie9ab5b001ed9636fa5b4d96f2d54a7e3e800fec6
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'integration')
-rw-r--r-- | integration/pom.xml | 40 |
1 files changed, 34 insertions, 6 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index 944dab72..10dbda4f 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -516,9 +516,9 @@ </dependency> <dependency> - <groupId>org.onap.sdc.sdc-tosca</groupId> - <artifactId>sdc-tosca</artifactId> - <version>1.5.1</version> + <groupId>org.onap.sdc.sdc-tosca</groupId> + <artifactId>sdc-tosca</artifactId> + <version>1.5.1</version> </dependency> <dependency> @@ -660,9 +660,9 @@ </dependency> <dependency> - <groupId>org.apache.commons</groupId> - <artifactId>commons-vfs2</artifactId> - <version>2.8.0</version> + <groupId>org.apache.commons</groupId> + <artifactId>commons-vfs2</artifactId> + <version>2.8.0</version> </dependency> <dependency> @@ -684,6 +684,34 @@ <version>3.2.7</version> <scope>test</scope> </dependency> + + <!-- Springboot --> + <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> |