From faa797b57b3a8233c2118d16dc4fab5fcef6766e Mon Sep 17 00:00:00 2001 From: "waqas.ikram" Date: Tue, 2 Feb 2021 11:03:43 +0000 Subject: Adding license,parent POM,readme and version files Change-Id: I3dda6c532215fabb1c649da0731e0debe1a5d944 Issue-ID: SO-3485 Signed-off-by: waqas.ikram --- .gitignore | 25 +++++++++++++++++++++++++ LICENSE.txt | 15 +++++++++++++++ pom.xml | 15 +++++++++++++++ readme.md | 17 +++++++++++++++++ version.properties | 13 +++++++++++++ 5 files changed, 85 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt create mode 100644 pom.xml create mode 100644 readme.md create mode 100644 version.properties 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..bebecaa --- /dev/null +++ b/pom.xml @@ -0,0 +1,15 @@ + + 4.0.0 + + org.onap.so + so + 1.7.0-SNAPSHOT + + org.onap.so.etsi.nfvo + so-etsi-nfvo + 1.7.1-SNAPSHOT + pom + + + \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..1c9bd8c --- /dev/null +++ b/readme.md @@ -0,0 +1,17 @@ +# ONAP SO ETSI NFVO + +---- +---- + +# Introduction + +SO ETSI NFVO project which handles the NS Lifecycle Management and NS Package Management. + +# Compiling SO ETSI NFVO + +SO ETSI NFVO 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 -- cgit 1.2.3-korg