diff options
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> |