Add skeleton files for ccsdk/features 43/56243/3
authorTimoney, Dan (dt5972) <dt5972@att.com>
Wed, 11 Jul 2018 20:49:03 +0000 (16:49 -0400)
committerTimoney, Dan (dt5972) <dt5972@att.com>
Thu, 12 Jul 2018 16:45:46 +0000 (12:45 -0400)
Add initial skeleton files for ccsdk/features repository.

Updated LICENSE with current approved text.

Change-Id: I1240daba8eb561b02aa2279a2cb03e51f54852d6
Issue-ID: CCSDK-359
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
LICENSE.txt [new file with mode: 0755]
README.md [new file with mode: 0644]
pom.xml [new file with mode: 0755]
version.properties [new file with mode: 0644]

diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100755 (executable)
index 0000000..3748952
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+* ============LICENSE_START==========================================
+* ===================================================================
+* Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
+* ===================================================================
+*
+* Unless otherwise specified, all software contained herein is licensed
+* under the Apache License, Version 2.0 (the â€œLicenseâ€\9d);
+* you may not use this software 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.
+*
+*
+*
+* Unless otherwise specified, all documentation contained herein is licensed
+* under the Creative Commons License, Attribution 4.0 Intl. (the â€œLicenseâ€\9d);
+* you may not use this documentation except in compliance with the License.
+* You may obtain a copy of the License at
+*
+*             https://creativecommons.org/licenses/by/4.0/
+*
+* Unless required by applicable law or agreed to in writing, documentation
+* 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.
+*
+* ============LICENSE_END============================================
+* 
+* For the file 
+* /src/main/resources/META-INF/resources/designer/lib/angular-sanitize.js,
+* to the extent that it contains code originating from Erik Arvidsson, 
+* that code is used under the Apache-2.0 license,
+* as permitted by http://erik.eae.net/simplehtmlparser/simplehtmlparser.js.
+*
+*/
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..2584bd3
--- /dev/null
+++ b/README.md
@@ -0,0 +1 @@
+Just a test for gerrit!!!
diff --git a/pom.xml b/pom.xml
new file mode 100755 (executable)
index 0000000..e427377
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+
+    <parent>
+        <groupId>org.onap.ccsdk.parent</groupId>
+        <artifactId>odlparent-lite</artifactId>
+        <version>1.1.0-SNAPSHOT</version>
+        <relativePath/>
+    </parent>
+
+    <groupId>org.onap.ccsdk.features</groupId>
+    <artifactId>ccsdk-features</artifactId>
+    <version>0.3.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
+    <name>ccsdk-features</name>
+    <description>CCSDK applications</description>
+    <url>https://wiki.onap.org</url>
+    <organization>
+        <name>ONAP</name>
+    </organization>
+
+    <modules>
+    </modules>
+
+    <scm>
+        <connection>scm:git:ssh://git@${onap.git.host}/features.git</connection>
+        <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git</developerConnection>
+        <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse</url>
+    </scm>
+
+
+    <profiles>
+        <profile>
+            <id>blackduck</id>
+            <activation>
+                <property>
+                    <name>blackduck-scan</name>
+                </property>
+            </activation>
+            <build>
+                    <plugins>
+                        <plugin>
+                            <groupId>com.blackducksoftware.integration</groupId>
+                            <artifactId>hub-maven-plugin</artifactId>
+                            <version>1.4.0</version>
+                            <inherited>false</inherited>
+                            <configuration>
+                                <hubProjectName>${project.name}</hubProjectName>
+                                <outputDirectory>${project.basedir}</outputDirectory>
+                            </configuration>
+                            <executions>
+                                <execution>
+                                    <id>create-bdio-file</id>
+                                    <phase>package</phase>
+                                    <goals>
+                                        <goal>createHubOutput</goal>
+                                    </goals>
+                                </execution>
+                            </executions>
+                        </plugin>
+                    </plugins>
+
+
+
+            </build>
+
+        </profile>
+
+    </profiles>
+</project>
diff --git a/version.properties b/version.properties
new file mode 100644 (file)
index 0000000..4c1c6c6
--- /dev/null
@@ -0,0 +1,15 @@
+###########################################################
+# 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
+
+
+release_name=0
+sprint_number=3
+feature_revision=0
+
+base_version=${release_name}.${sprint_number}.${feature_revision}
+
+release_version=${base_version}-STAGING
+snapshot_version=${base_version}-SNAPSHOT
+