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> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame] | 7 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 8 | </parent> |
| 9 | |
| 10 | <artifactId>appc-ssh-adapter-api</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>org.openecomp.sdnc.core</groupId> |
| 16 | <artifactId>dblib-provider</artifactId> |
| 17 | </dependency> |
| 18 | </dependencies> |
| 19 | |
| 20 | <build> |
| 21 | <plugins> |
| 22 | <plugin> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>maven-bundle-plugin</artifactId> |
| 25 | <extensions>true</extensions> |
| 26 | <configuration> |
| 27 | <instructions> |
| 28 | <Export-Package>org.openecomp.appc.adapter.ssh</Export-Package> |
| 29 | <Embed-Dependency>!dblib-provider</Embed-Dependency> |
Patrick Brady | 74fde4a | 2017-04-06 12:33:04 -0700 | [diff] [blame] | 30 | <Import-Package>!org.slf4j.impl,*;resolution:=optional</Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 31 | </instructions> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-javadoc-plugin</artifactId> |
| 37 | <executions> |
| 38 | <execution> |
| 39 | <id>attach-javadocs</id> |
| 40 | <goals> |
| 41 | <goal>jar</goal> |
| 42 | </goals> |
| 43 | </execution> |
| 44 | </executions> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
| 48 | </project> |