summaryrefslogtreecommitdiffstats
path: root/portal-BE/src
diff options
context:
space:
mode:
Diffstat (limited to 'portal-BE/src')
-rw-r--r--portal-BE/src/main/java/org/onap/portal/PortalApplication.java13
-rw-r--r--portal-BE/src/main/resources/application.properties1
-rw-r--r--portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java13
3 files changed, 27 insertions, 0 deletions
diff --git a/portal-BE/src/main/java/org/onap/portal/PortalApplication.java b/portal-BE/src/main/java/org/onap/portal/PortalApplication.java
new file mode 100644
index 00000000..4a7f4f85
--- /dev/null
+++ b/portal-BE/src/main/java/org/onap/portal/PortalApplication.java
@@ -0,0 +1,13 @@
+package org.onap.portal;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class PortalApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(PortalApplication.class, args);
+ }
+
+}
diff --git a/portal-BE/src/main/resources/application.properties b/portal-BE/src/main/resources/application.properties
new file mode 100644
index 00000000..8b137891
--- /dev/null
+++ b/portal-BE/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java b/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java
new file mode 100644
index 00000000..24871dc4
--- /dev/null
+++ b/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java
@@ -0,0 +1,13 @@
+package org.onap.portal;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class PortalApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}