diff options
author | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-07-11 15:52:33 -0400 |
---|---|---|
committer | Timoney, Dan (dt5972) <dt5972@att.com> | 2018-07-11 15:52:33 -0400 |
commit | 60315525ab5e7c12a9f47c409092e8dba6ad656d (patch) | |
tree | 67c5031cd1d6e232d974959615113f366e0df731 | |
parent | 6184f53e7f9a44bc912c3e8f4c4302dc77bd447c (diff) |
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) <dt5972@att.com>
-rwxr-xr-x | LICENSE.txt | 22 | ||||
-rwxr-xr-x | README.md | 8 | ||||
-rwxr-xr-x | pom.xml | 72 | ||||
-rw-r--r-- | version.properties | 15 |
4 files changed, 117 insertions, 0 deletions
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 @@ +<?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.apps</groupId> + <artifactId>ccsdk-apps</artifactId> + <version>0.3.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>ccsdk-apps</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}/apps.git</connection> + <developerConnection>scm:git:ssh://${onap.git.host}:${onap.git.port}/${onap.git.project}/apps.git</developerConnection> + <url>${onap.git.protocol}://${onap.git.host}/projects/${onap.git.project}/repos/apps/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 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 + |