diff options
Diffstat (limited to 'example-spring-boot/pom.xml')
-rw-r--r-- | example-spring-boot/pom.xml | 35 |
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> |