From 60315525ab5e7c12a9f47c409092e8dba6ad656d Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Wed, 11 Jul 2018 15:52:33 -0400 Subject: [PATCH] Add initial skeleton for ccsdk/apps Add initial empty pom.xml, LICENSE and README files for ccsdk/apps repo Change-Id: I089437bb2688609292c28ad25f62fafe47f53762 Issue-ID: CCSDK-359 Signed-off-by: Timoney, Dan (dt5972) --- LICENSE.txt | 22 +++++++++++++++++ README.md | 8 ++++++ pom.xml | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ version.properties | 15 ++++++++++++ 4 files changed, 117 insertions(+) create mode 100755 LICENSE.txt create mode 100755 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 00000000..1f1e2cf5 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,22 @@ +/* + * ============LICENSE_START========================================== + * =================================================================== + * Copyright © 2018 AT&T Intellectual Property. All rights reserved. + * =================================================================== + * 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. + * ============LICENSE_END============================================ + * + * ECOMP and OpenECOMP are trademarks + * and service marks of AT&T Intellectual Property. + * + */ diff --git a/README.md b/README.md new file mode 100755 index 00000000..79e694fc --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +This source repository contains the code for CCSDK standalone applications +(e.g. microservices) +To compile this code: + +1. Make sure your local Maven settings file ($HOME/.m2/settings.xml) contains references to the ONAP repositories and OpenDaylight repositories. + +2. To compile, run "mvn clean install". + diff --git a/pom.xml b/pom.xml new file mode 100755 index 00000000..6b974117 --- /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.apps + ccsdk-apps + 0.3.0-SNAPSHOT + pom + + ccsdk-apps + CCSDK applications + https://wiki.onap.org + + ONAP + + + + + + + scm:git:ssh://git@${onap.git.host}/apps.git + scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/apps.git + ${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/apps/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 00000000..60a8d1ca --- /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=1 +sprint_number=1 +feature_revision=0 + +base_version=${release_name}.${sprint_number}.${feature_revision} + +release_version=${base_version}-STAGING +snapshot_version=${base_version}-SNAPSHOT + -- 2.16.6