Provide parent poms 99/2899/2
authorherbert <herbert.eiselt@highstreet-technologies.com>
Fri, 20 Mar 2020 14:26:45 +0000 (15:26 +0100)
committerherbert <herbert.eiselt@highstreet-technologies.com>
Fri, 20 Mar 2020 14:28:40 +0000 (15:28 +0100)
Own path for parent pom files

Issue-ID: OAM-81
Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
Change-Id: I08b8271ec4c4501cf02a144fb4e59103f775f440
Signed-off-by: herbert <herbert.eiselt@highstreet-technologies.com>
features/README.md
parent/.gitignore [new file with mode: 0644]
parent/README.md [new file with mode: 0644]
parent/binding-parent/pom.xml [moved from features/parent/binding-parent/pom.xml with 100% similarity]
parent/odlparent-lite/pom.xml [moved from features/parent/odlparent-lite/pom.xml with 100% similarity]
parent/pom.xml [new file with mode: 0644]
parent/single-feature-parent/pom.xml [moved from features/parent/single-feature-parent/pom.xml with 100% similarity]

index 42d9148..fc38fea 100644 (file)
@@ -8,4 +8,4 @@ This directory contains code artifacts as [OSGi bundles](https://en.wikipedia.or
 
 ### o-ran
 
-### x-ran
\ No newline at end of file
+### x-ran
diff --git a/parent/.gitignore b/parent/.gitignore
new file mode 100644 (file)
index 0000000..94227c1
--- /dev/null
@@ -0,0 +1,16 @@
+target/
+target-ide/
+yang-gen-sal/
+.checkstyle
+.classpath
+.project
+.settings
+.factorypath
+.metadata
+*.swp
+dist/
+*/**/bin/
+etc/
+node_modules/
+.fbExcludeFilterFile
+*.md.html
diff --git a/parent/README.md b/parent/README.md
new file mode 100644 (file)
index 0000000..9de4c95
--- /dev/null
@@ -0,0 +1,10 @@
+# parent
+
+This directory contains parent pom files to use ONAP sdnc and ccsdk framework for Opendaylight mdsal and netconf.
+
+Supported parents are:
+  - binding-parent
+  - odlparent-light
+  - single-feature-parent
+
+In ONAP project most OpenDaylight clients are supported. This is a subset.
diff --git a/parent/pom.xml b/parent/pom.xml
new file mode 100644 (file)
index 0000000..9a2e370
--- /dev/null
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+################################################################################
+# Copyright 2020 highstreet technologies and others
+#
+# 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.
+#
+-->
+<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.o-ran-sc.oam.parent</groupId>
+  <artifactId>parent-top</artifactId>
+  <version>0.7.1-SNAPSHOT</version>
+  <packaging>pom</packaging>
+
+  <name>o-ran-sc parent top</name>
+
+  <modules>
+    <module>odlparent-lite</module>
+    <module>binding-parent</module>
+    <module>single-feature-parent</module>
+  </modules>
+
+</project>