diff options
author | Andrew Gauld <ag1282@att.com> | 2017-08-25 13:11:25 -0400 |
---|---|---|
committer | Andrew Gauld <ag1282@att.com> | 2017-08-25 14:16:19 -0400 |
commit | 16684835ac78c311b8be0217689360e6d94a4c81 (patch) | |
tree | 7f94776c463a9a0abc81cbc54adfee175a92b353 /pom.xml | |
parent | 9b54f0025451cb147e84e47701070582df725b85 (diff) |
Maven clean/package/test/deploy for sshkeyshare
Change-Id: I7074f904fc2025bc8b76a62bbf56e2b1f66f6045
Issue-Id: CCSDK-65
Signed-off-by: Andrew Gauld <ag1282@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 44 |
1 files changed, 34 insertions, 10 deletions
@@ -1,14 +1,38 @@ -<?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/maven-v4_0_0.xsd"> +<?xml version="1.0"?> +<!-- +============LICENSE_START======================================================= +org.onap.ccsdk +================================================================================ +Copyright (c) 2017 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 - <modelVersion>4.0.0</modelVersion> - <packaging>pom</packaging> - <groupId>org.onap.ccsdk.platform_plugins</groupId> - <artifactId>platform-plugins</artifactId> - <version>0.1.0-SNAPSHOT</version> + http://www.apache.org/licenses/LICENSE-2.0 - <name>PlatformPlugins</name> - <description>CCSD Platform Plugins</description> +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========================================================= +--> +<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.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.0.0-SNAPSHOT</version> + </parent> + <groupId>org.onap.ccsdk.platform</groupId> + <artifactId>plugins</artifactId> + <name>plugins</name> + <version>1.0.0-SNAPSHOT</version> + <url>http://maven.apache.org</url> + <packaging>pom</packaging> + <modules> + <module>sshkeyshare</module> + </modules> </project> |