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 | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.appc.parent</groupId> |
| 27 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 19ae780 | 2019-01-08 12:25:10 -0800 | [diff] [blame] | 28 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 29 | <relativePath /> |
| 30 | </parent> |
| 31 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 32 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 33 | <artifactId>appc-ssh-adapter-sshd</artifactId> |
| 34 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 35 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 36 | <dependencies> |
| 37 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 38 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 39 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.apache.sshd</groupId> |
| 45 | <artifactId>sshd-core</artifactId> |
| 46 | <scope>provided</scope> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 47 | <version>2.0.0</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
David Crosson | 9fa2ece | 2018-07-16 17:52:06 +0200 | [diff] [blame] | 50 | <groupId>org.apache.sshd</groupId> |
| 51 | <artifactId>sshd-sftp</artifactId> |
| 52 | <scope>provided</scope> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 53 | <version>2.0.0</version> |
David Crosson | 9fa2ece | 2018-07-16 17:52:06 +0200 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.apache.sshd</groupId> |
| 57 | <artifactId>sshd-scp</artifactId> |
| 58 | <scope>provided</scope> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 59 | <version>2.0.0</version> |
David Crosson | 9fa2ece | 2018-07-16 17:52:06 +0200 | [diff] [blame] | 60 | </dependency> |
| 61 | <dependency> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 62 | <groupId>ch.qos.logback</groupId> |
| 63 | <artifactId>logback-classic</artifactId> |
| 64 | <version>${logback.version}</version> |
| 65 | </dependency> |
| 66 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 67 | <groupId>com.att.eelf</groupId> |
| 68 | <artifactId>eelf-core</artifactId> |
Patrick Brady | 28da502 | 2018-09-17 12:52:55 -0700 | [diff] [blame] | 69 | <exclusions> |
| 70 | <exclusion> |
| 71 | <groupId>ch.qos.logback</groupId> |
| 72 | <artifactId>logback-classic</artifactId> |
| 73 | </exclusion> |
| 74 | </exclusions> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>junit</groupId> |
| 78 | <artifactId>junit</artifactId> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 82 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 83 | <artifactId>appc-common-bundle</artifactId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 84 | <version>${project.version}</version> |
| 85 | </dependency> |
| 86 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 87 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 88 | <artifactId>dblib-provider</artifactId> |
| 89 | </dependency> |
| 90 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 91 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 92 | <build> |
| 93 | <plugins> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.felix</groupId> |
| 96 | <artifactId>maven-bundle-plugin</artifactId> |
| 97 | <extensions>true</extensions> |
| 98 | <configuration> |
| 99 | <instructions> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 100 | <Export-Service>org.onap.appc.adapter.ssh.SshAdapter</Export-Service> |
| 101 | <Private-Package>org.onap.appc.adapter.ssh.impl.*</Private-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 102 | <Import-Package>!org.apache.log,!org.apache.commons.logging,!groovy.lang,!javax.jms,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!com.ibm.icu.*,!com.sun.faces.*,!org.jasypt.*,*</Import-Package> |
| 103 | <Embed-Dependency>!dblib-provider,jasypt,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 104 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | 3222908 | 2018-08-09 12:05:53 -0700 | [diff] [blame] | 105 | <_removeheaders>Import-Service</_removeheaders> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 106 | </instructions> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </build> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 111 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 112 | </project> |