aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/pom.xml
diff options
context:
space:
mode:
authorvirajput <vijendra_rajput@infosys.com>2017-09-01 00:49:58 +0530
committerVijendra Rajput <vijendra_rajput@infosys.com>2017-09-01 05:21:09 +0000
commitae4b66d2e236855929313c6b2b4cbfe448ee4184 (patch)
tree1edcee5a4e277f1ca353c5e82e7ee3abdd3762a5 /example-spring-boot/pom.xml
parente638628b22fef6f480fa104cd696834dddf6c030 (diff)
Added license header and other review comments
Issue-Id: MSB-23 Change-Id: I58ac54a53d8fb281c6284139ba5323732f3ec773 Signed-off-by: virajput <vijendra_rajput@infosys.com>
Diffstat (limited to 'example-spring-boot/pom.xml')
-rw-r--r--example-spring-boot/pom.xml35
1 files changed, 23 insertions, 12 deletions
diff --git a/example-spring-boot/pom.xml b/example-spring-boot/pom.xml
index 5989f75..be3ada7 100644
--- a/example-spring-boot/pom.xml
+++ b/example-spring-boot/pom.xml
@@ -2,21 +2,20 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.onap.oparent</groupId>
+ <artifactId>oparent</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
- <groupId>org.onap.boot.example</groupId>
- <artifactId>springBootService</artifactId>
+ <groupId>org.onap.msb.sdk</groupId>
+ <artifactId>msb-java-sdk-sprint-boot-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>springBootService</name>
- <description>msb skd Demo for Spring Boot</description>
-
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>1.5.6.RELEASE</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
+ <name>msb-java-sdk-sprint-boot-example</name>
+ <description>msb java skd Spring Boot example</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -24,6 +23,18 @@
<java.version>1.8</java.version>
</properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-parent</artifactId>
+ <version>1.5.6.RELEASE</version>
+ <scope>import</scope>
+ <type>pom</type>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -54,9 +65,9 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
+ <version>1.5.6.RELEASE</version>
</plugin>
</plugins>
</build>
-
</project>