diff options
-rwxr-xr-x | LICENSE.txt | 43 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rwxr-xr-x | pom.xml | 72 | ||||
-rw-r--r-- | version.properties | 15 |
4 files changed, 131 insertions, 0 deletions
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 @@ +<?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 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 + |