From 822c98964b0a4f7b4da5dbe79669e54011a0778d Mon Sep 17 00:00:00 2001 From: "Paira, Saurav (sp694w) sp694w@att.com" Date: Mon, 20 Aug 2018 21:28:11 +0000 Subject: Add VlantagApi Functional Component to apps/ms Initial code contribution to add Vlantag Api microservice. It is developed as a Spring Boot application. Issue-ID: CCSDK-475 Change-Id: I0d5df398aae284cee181fcefeee9251e11ea8c26 Signed-off-by: Saurav Paira Signed-off-by: Paira, Saurav (sp694w) sp694w@att.com --- ms/vlantag-api/pom.xml | 217 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 217 insertions(+) create mode 100644 ms/vlantag-api/pom.xml (limited to 'ms/vlantag-api/pom.xml') diff --git a/ms/vlantag-api/pom.xml b/ms/vlantag-api/pom.xml new file mode 100644 index 00000000..616d99e2 --- /dev/null +++ b/ms/vlantag-api/pom.xml @@ -0,0 +1,217 @@ + + + 4.0.0 + + org.onap.ccsdk.apps.ms.vlantagapi + vlantag-api + 0.3.0-SNAPSHOT + jar + + vlantag-api + Vlantag Api Service for Vlantag management of VNFs + + + ${basedir}/target/main/resources/META-INF/resources/swagger-ui/dist + 1.5.8 + 1.8 + 2.0.4.RELEASE + 5.1.46 + 0.3.0-SNAPSHOT + TBD:5100 + vlantagapi + + + jacoco + reuseReports + ${basedir}/target/surefire-reports + ${basedir}/target/failsafe-reports + ${basedir}/target/jacoco_report + ${basedir}/target/jacoco_itReport + ${basedir}/target/jacoco-ut.exec + ${basedir}/target/jacoco-it.exec + java + 2.0.7 + + + + org.springframework.boot + spring-boot-starter-parent + 2.0.4.RELEASE + + + + + + + org.springframework.boot + spring-boot-starter-jersey + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-test + test + + + + org.springframework.boot + spring-boot-starter-actuator + + + + org.springframework.boot + spring-boot-starter-security + 2.0.1.RELEASE + + + + org.onap.ccsdk.sli.adaptors + resource-assignment-provider + ${ccsdk.sli.adaptors.version} + + + org.slf4j + slf4j-simple + + + + + + mysql + mysql-connector-java + 5.1.46 + + + + io.swagger + swagger-annotations + 1.5.8 + + + + + + + + + org.jacoco + jacoco-maven-plugin + 0.7.5.201505241946 + + + + pre-unit-test + + prepare-agent + + + + ${sonar.jacoco.reportPath} + surefireArgLine + + + + + post-unit-test + test + + report + + + + ${sonar.jacoco.reportPath} + + ${jacoco.path} + + + + + + com.github.kongchen + swagger-maven-plugin + 3.1.7 + + + + + http + https + + localhost:9091 + + org.onap.ccsdk.apps.ms.vlantagapi.core.service + org.onap.ccsdk.apps.ms.vlantagapi.core.model + + + /vlantagapi + + ${project.artifactId} Service + ${project.version} + + + + basicAuth + basic + + + ${swagger.directory} + + + + + + + package + + generate + + + + + + com.spotify + docker-maven-plugin + 0.4.11 + + ${docker.registry}/org.onap.ccsdk.apps/${serviceArtifactName} + src/main/docker + docker-hub + https://${docker.registry} + + ${project.version} + latest + + true + + + / + ${project.build.directory} + ${project.build.finalName}.jar + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${springboot.version} + + + + repackage + + + + + + + + + -- cgit 1.2.3-korg