aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMukeshKumar <mukeshsharma@est.tech>2021-02-02 14:41:10 +0000
committerMukesh <mukeshsharma@est.tech>2021-02-03 12:34:33 +0000
commit0a3f820c6290806df91ab7062865c7a32973fe57 (patch)
treec9040ef075b44ad8cd478ed48cffede22f36dd92
parentb29c0b366f4f4a160dbe7b1fade5479366365832 (diff)
Adding license,parent POM,readme and version files
Change-Id: Ib837f5755d9bcb25e3af063d4eeb4da7c68d4e5a Issue-ID: SO-3486 Signed-off-by: Mukesh <mukeshsharma@est.tech>
-rw-r--r--.gitignore25
-rw-r--r--LICENSE.txt15
-rw-r--r--pom.xml13
-rw-r--r--readme.md17
-rw-r--r--version.properties13
5 files changed, 83 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..95e9a5a
--- /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.adapters</groupId>
+ <artifactId>so-etsi-sol003-adapter</artifactId>
+ <version>1.7.1-SNAPSHOT</version>
+ <name>SO ETSI SOL003 Adapter</name>
+ <packaging>pom</packaging>
+</project> \ No newline at end of file
diff --git a/readme.md b/readme.md
new file mode 100644
index 0000000..073545b
--- /dev/null
+++ b/readme.md
@@ -0,0 +1,17 @@
+# ONAP SO ETSI SOL003 Adapter
+
+----
+----
+
+# Introduction
+
+SO ETSI SOL003 Adapter exposes VNF LCM and Package management.
+
+# Compiling SO ETSI SOL003 Adapter
+
+SO ETSI SOL003 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