From fd23f3cf7c22ef284de0338c9fd380d5f189a87f Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Wed, 11 Jul 2018 16:49:03 -0400 Subject: Add skeleton files for ccsdk/features 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) --- LICENSE.txt | 43 ++++++++++++++++++++++++++++++++ README.md | 1 + pom.xml | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ version.properties | 15 ++++++++++++ 4 files changed, 131 insertions(+) create mode 100755 LICENSE.txt create mode 100644 README.md create mode 100755 pom.xml create mode 100644 version.properties diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100755 index 000000000..374895239 --- /dev/null +++ b/LICENSE.txt @@ -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”); +* 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”); +* 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 index 000000000..2584bd324 --- /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 index 000000000..e4273773e --- /dev/null +++ b/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + + + org.onap.ccsdk.parent + odlparent-lite + 1.1.0-SNAPSHOT + + + + org.onap.ccsdk.features + ccsdk-features + 0.3.0-SNAPSHOT + pom + + ccsdk-features + CCSDK applications + https://wiki.onap.org + + ONAP + + + + + + + scm:git:ssh://git@${onap.git.host}/features.git + scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/features.git + ${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/features/browse + + + + + + blackduck + + + blackduck-scan + + + + + + com.blackducksoftware.integration + hub-maven-plugin + 1.4.0 + false + + ${project.name} + ${project.basedir} + + + + create-bdio-file + package + + createHubOutput + + + + + + + + + + + + + + diff --git a/version.properties b/version.properties new file mode 100644 index 000000000..4c1c6c69a --- /dev/null +++ b/version.properties @@ -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 + -- cgit 1.2.3-korg