diff options
-rw-r--r-- | .gitignore | 25 | ||||
-rw-r--r-- | LICENSE.txt | 15 | ||||
-rw-r--r-- | pom.xml | 13 | ||||
-rw-r--r-- | readme.md | 18 | ||||
-rw-r--r-- | version.properties | 13 |
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 @@ -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 |