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> |
| 25 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 26 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 27 | <artifactId>appc-ssh-adapter</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 28 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 29 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 30 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 31 | <artifactId>appc-ssh-adapter-sshd</artifactId> |
| 32 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 33 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 36 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 37 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.sshd</groupId> |
| 43 | <artifactId>sshd-core</artifactId> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
David Crosson | 9fa2ece | 2018-07-16 17:52:06 +0200 | [diff] [blame] | 47 | <groupId>org.apache.sshd</groupId> |
| 48 | <artifactId>sshd-sftp</artifactId> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.apache.sshd</groupId> |
| 53 | <artifactId>sshd-scp</artifactId> |
| 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 57 | <groupId>com.att.eelf</groupId> |
| 58 | <artifactId>eelf-core</artifactId> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>junit</groupId> |
| 62 | <artifactId>junit</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 66 | <groupId>org.onap.appc</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 67 | <artifactId>appc-common</artifactId> |
| 68 | <version>${project.version}</version> |
| 69 | </dependency> |
| 70 | <dependency> |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 71 | <groupId>org.onap.ccsdk.sli.core</groupId> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 72 | <artifactId>dblib-provider</artifactId> |
| 73 | </dependency> |
| 74 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 75 | |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 76 | <build> |
| 77 | <plugins> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.felix</groupId> |
| 80 | <artifactId>maven-bundle-plugin</artifactId> |
| 81 | <extensions>true</extensions> |
| 82 | <configuration> |
| 83 | <instructions> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 84 | <Export-Service>org.onap.appc.adapter.ssh.SshAdapter</Export-Service> |
| 85 | <Private-Package>org.onap.appc.adapter.ssh.impl.*</Private-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 86 | <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> |
| 87 | <Embed-Dependency>!dblib-provider,jasypt,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 88 | <Embed-Transitive>true</Embed-Transitive> |
| 89 | </instructions> |
| 90 | </configuration> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </build> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 94 | </project> |