diff options
author | virajput <vijendra_rajput@infosys.com> | 2017-08-31 15:46:27 +0530 |
---|---|---|
committer | virajput <vijendra_rajput@infosys.com> | 2017-08-31 15:49:51 +0530 |
commit | e638628b22fef6f480fa104cd696834dddf6c030 (patch) | |
tree | dd66e5f9c794eca6b6239ee5dbff980a2f8bf647 /example-spring-boot/pom.xml | |
parent | de0c3cac5c259a83eba9711aa295ddf919fd6df5 (diff) |
added spring boot example using msb java sdk
Issue-Id: MSB-23
Change-Id: Ic3caf7d63a4588aab73df1b07da3d15d6edfa485
Signed-off-by: virajput <vijendra_rajput@infosys.com>
Diffstat (limited to 'example-spring-boot/pom.xml')
-rw-r--r-- | example-spring-boot/pom.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/example-spring-boot/pom.xml b/example-spring-boot/pom.xml new file mode 100644 index 0000000..5989f75 --- /dev/null +++ b/example-spring-boot/pom.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <groupId>org.onap.boot.example</groupId> + <artifactId>springBootService</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> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> + <java.version>1.8</java.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter</artifactId> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + + <dependency> + <groupId>org.onap.msb.sdk</groupId> + <artifactId>msb-java-sdk</artifactId> + <version>1.0.0-SNAPSHOT</version> + </dependency> + + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + </plugin> + </plugins> + </build> + + +</project> |