aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorByung-Woo Jun <byung-woo.jun@est.tech>2021-02-03 14:13:30 +0000
committerGerrit Code Review <gerrit@onap.org>2021-02-03 14:13:30 +0000
commitce764f872bfc0096d1c160a02213c79bf843fa3c (patch)
tree3b63ef84238e7a2c5941fda361f7835ede20f707
parentb7cdb1e88801fbb12d261bfab2a2b4791c109c38 (diff)
parent10183e8c2626f69d0cee4a8167d1a92017859a35 (diff)
Merge "Adding license,parent POM,readme and version files"
-rw-r--r--.gitignore25
-rw-r--r--LICENSE.txt15
-rw-r--r--pom.xml13
-rw-r--r--readme.md18
-rw-r--r--version.properties13
5 files changed, 84 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5814298
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,25 @@
+target
+**/.settings
+**/.classpath
+**/.project
+**/.buildpath
+**/.factorypath
+**/.springBeans
+**/.project
+**/.classpath
+.idea
+.checkstyle
+.DS_Store
+.*~
+*.iml
+**/logs/
+**/debug-logs/
+*.class
+*.swp
+*.log
+*.tmp
+**/bin/
+/tattletale/
+/.metadata/
+**/.sts4-cache
+**/.java-version
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..8cdc976
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,15 @@
+ Copyright (C) 2021 Nordix Foundation.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+ SPDX-License-Identifier: Apache-2.0
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..05325f4
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,13 @@
+<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.onap.so</groupId>
+ <artifactId>so</artifactId>
+ <version>1.7.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.onap.so.admin.cockpit</groupId>
+ <artifactId>so-admin-cockpit</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>SO Admin Cockpit</name>
+</project> \ No newline at end of file
diff --git a/readme.md b/readme.md
new file mode 100644
index 0000000..9a3a96b
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,18 @@
+# ONAP SO Admin Cockpit
+
+----
+----
+
+# Introduction
+
+The SO Admin Cockpit component allows a user to have a detailed monitoring view of the
+Camunda BPMN workflows in SO.
+
+# Compiling SO Admin Cockpit
+
+SO Admin Cockpit Adapter can be compiled with `mvn clean install`
+
+# Getting Help
+
+Subscribe and post messages with SO tag in onap-discuss group at https://lists.onap.org/g/onap-discuss
+
diff --git a/version.properties b/version.properties
new file mode 100644
index 0000000..11f0383
--- /dev/null
+++ b/version.properties
@@ -0,0 +1,13 @@
+# Versioning variables
+# Note that these variables cannot be structured (e.g. : version.release or version.snapshot etc... )
+# because they are used in Jenkins, whose plug-in doesn't support
+
+major=1
+minor=8
+patch=0
+
+base_version=${major}.${minor}.${patch}
+
+# Release must be completed with git revision # in Jenkins
+release_version=${base_version}
+snapshot_version=${base_version}-SNAPSHOT