From 1a54d9766899fe3ee73926bfe1e67a7b6f29749d Mon Sep 17 00:00:00 2001 From: prathamesh morde Date: Fri, 22 Feb 2019 17:03:19 -0500 Subject: Skeleton of CDS-SDC Listener ms Change-Id: I3874b588a484a22cc4e0fe9d39541effa1f3c305 Issue-ID: CCSDK-349 Signed-off-by: prathamesh morde --- ms/cds-sdc-listener/application/pom.xml | 58 ++++++++++++++++++++++ .../cdssdclistener/CdsSdcListenerApplication.java | 19 +++++++ 2 files changed, 77 insertions(+) create mode 100644 ms/cds-sdc-listener/application/pom.xml create mode 100644 ms/cds-sdc-listener/application/src/main/java/org/onap/ccsdk/apps/cdssdclistener/CdsSdcListenerApplication.java (limited to 'ms/cds-sdc-listener/application') diff --git a/ms/cds-sdc-listener/application/pom.xml b/ms/cds-sdc-listener/application/pom.xml new file mode 100644 index 00000000..a5e6f1e5 --- /dev/null +++ b/ms/cds-sdc-listener/application/pom.xml @@ -0,0 +1,58 @@ + + + + + org.onap.ccsdk.parent + spring-boot-1-starter-parent + 1.2.1-SNAPSHOT + + + + 4.0.0 + application + CDS-SDC Listener Application + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.boot + spring-boot-devtools + true + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + repackage + + repackage + + + + + + + + diff --git a/ms/cds-sdc-listener/application/src/main/java/org/onap/ccsdk/apps/cdssdclistener/CdsSdcListenerApplication.java b/ms/cds-sdc-listener/application/src/main/java/org/onap/ccsdk/apps/cdssdclistener/CdsSdcListenerApplication.java new file mode 100644 index 00000000..661f8cb5 --- /dev/null +++ b/ms/cds-sdc-listener/application/src/main/java/org/onap/ccsdk/apps/cdssdclistener/CdsSdcListenerApplication.java @@ -0,0 +1,19 @@ +/* + * Copyright (C) 2019 Bell Canada. All rights reserved. + * + * NOTICE: All the intellectual and technical concepts contained herein are + * proprietary to Bell Canada and are protected by trade secret or copyright law. + * Unauthorized copying of this file, via any medium is strictly prohibited. + */ + +package org.onap.ccsdk.apps.cdssdclistener; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class CdsSdcListenerApplication { + public static void main(String[] args) { + SpringApplication.run(CdsSdcListenerApplication.class, args); + } +} -- cgit 1.2.3-korg