Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <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"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.openecomp.appc</groupId> |
| 6 | <artifactId>appc-ssh-adapter</artifactId> |
| 7 | <version>1.0.0</version> |
| 8 | </parent> |
| 9 | |
| 10 | <artifactId>appc-ssh-adapter-sshd</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>org.openecomp.appc</groupId> |
| 16 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 17 | <version>${project.version}</version> |
| 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>org.apache.sshd</groupId> |
| 22 | <artifactId>sshd-core</artifactId> |
| 23 | <scope>provided</scope> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>com.att.eelf</groupId> |
| 27 | <artifactId>eelf-core</artifactId> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>junit</groupId> |
| 31 | <artifactId>junit</artifactId> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.openecomp.appc</groupId> |
| 35 | <artifactId>appc-common</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.openecomp.sdnc.core</groupId> |
| 40 | <artifactId>dblib-provider</artifactId> |
| 41 | </dependency> |
| 42 | </dependencies> |
| 43 | |
| 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>maven-bundle-plugin</artifactId> |
| 49 | <extensions>true</extensions> |
| 50 | <configuration> |
| 51 | <instructions> |
| 52 | <Export-Service>org.openecomp.appc.adapter.ssh.SshAdapter</Export-Service> |
| 53 | <Private-Package>org.openecomp.appc.adapter.ssh.impl.*</Private-Package> |
| 54 | <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> |
| 55 | <Embed-Dependency>!dblib-provider,appc-common,jasypt,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 56 | <Embed-Transitive>true</Embed-Transitive> |
| 57 | </instructions> |
| 58 | </configuration> |
| 59 | </plugin> |
| 60 | </plugins> |
| 61 | </build> |
| 62 | </project> |