Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | cd5f4f6 | 2018-06-13 14:03:54 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 7 | Copyright (C) 2017 Amdocs |
| 8 | ================================================================================ |
| 9 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | you may not use this file except in compliance with the License. |
| 11 | You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | ============LICENSE_END========================================================= |
Skip Wonnell | 8c4b89b | 2018-01-12 09:24:03 -0600 | [diff] [blame] | 21 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <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"> |
Patrick Brady | e2798ef | 2018-03-14 15:18:35 -0400 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 24 | <parent> |
| 25 | <groupId>org.onap.appc.parent</groupId> |
| 26 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 27 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 28 | <relativePath /> |
| 29 | </parent> |
| 30 | <groupId>org.onap.appc</groupId> |
Patrick Brady | e2798ef | 2018-03-14 15:18:35 -0400 | [diff] [blame] | 31 | |
| 32 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 33 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
Patrick Brady | e2798ef | 2018-03-14 15:18:35 -0400 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 38 | <artifactId>dblib-provider</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <version>4.12</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 47 | |
Patrick Brady | e2798ef | 2018-03-14 15:18:35 -0400 | [diff] [blame] | 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <extensions>true</extensions> |
| 54 | <configuration> |
| 55 | <instructions> |
| 56 | <Export-Package>org.onap.appc.adapter.ssh</Export-Package> |
| 57 | <Embed-Dependency>!dblib-provider</Embed-Dependency> |
Patrick Brady | 74fde4a | 2017-04-06 12:33:04 -0700 | [diff] [blame] | 58 | <Import-Package>!org.slf4j.impl,*;resolution:=optional</Import-Package> |
Patrick Brady | e2798ef | 2018-03-14 15:18:35 -0400 | [diff] [blame] | 59 | </instructions> |
| 60 | </configuration> |
| 61 | </plugin> |
| 62 | <plugin> |
| 63 | <groupId>org.apache.maven.plugins</groupId> |
| 64 | <artifactId>maven-javadoc-plugin</artifactId> |
| 65 | <executions> |
| 66 | <execution> |
| 67 | <id>attach-javadocs</id> |
| 68 | <goals> |
| 69 | <goal>jar</goal> |
| 70 | </goals> |
| 71 | </execution> |
| 72 | </executions> |
| 73 | </plugin> |
| 74 | </plugins> |
| 75 | </build> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 76 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 77 | </project> |