Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Dan Timoney | dd3f740 | 2017-10-12 16:01:06 -0400 | [diff] [blame^] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.sdnc.northbound</groupId> |
| 7 | <artifactId>vnftools</artifactId> |
| 8 | <version>1.2.0-SNAPSHOT</version> |
| 9 | </parent> |
| 10 | <artifactId>vnftools-provider</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | <name>VNF Tools Plugin - Provider</name> |
| 13 | <url>http://maven.apache.org</url> |
| 14 | <properties> |
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | </properties> |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>junit</groupId> |
| 20 | <artifactId>junit</artifactId> |
| 21 | <version>${junit.version}</version> |
| 22 | <scope>test</scope> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 26 | <artifactId>sli-common</artifactId> |
| 27 | <version>${sdnctl.sli.version}</version> |
| 28 | <scope>compile</scope> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 32 | <artifactId>sli-provider</artifactId> |
| 33 | <version>${sdnctl.sli.version}</version> |
| 34 | <scope>compile</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>equinoxSDK381</groupId> |
| 38 | <artifactId>org.eclipse.osgi</artifactId> |
| 39 | <version>${equinox.osgi.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.slf4j</groupId> |
| 43 | <artifactId>slf4j-api</artifactId> |
| 44 | <version>${slf4j.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.slf4j</groupId> |
| 48 | <artifactId>jcl-over-slf4j</artifactId> |
| 49 | <version>${slf4j.version}</version> |
| 50 | </dependency> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 51 | |
Dan Timoney | dd3f740 | 2017-10-12 16:01:06 -0400 | [diff] [blame^] | 52 | <dependency> |
| 53 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 54 | <artifactId>sliPluginUtils-provider</artifactId> |
| 55 | <version>${sdnctl.slipluginutils.version}</version> |
| 56 | <type>jar</type> |
| 57 | <scope>compile</scope> |
| 58 | </dependency> |
| 59 | </dependencies> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 60 | |
Dan Timoney | dd3f740 | 2017-10-12 16:01:06 -0400 | [diff] [blame^] | 61 | <build> |
| 62 | <plugins> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 63 | |
| 64 | |
Dan Timoney | dd3f740 | 2017-10-12 16:01:06 -0400 | [diff] [blame^] | 65 | <plugin> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>maven-bundle-plugin</artifactId> |
| 68 | <version>${bundle.plugin.version}</version> |
| 69 | <extensions>true</extensions> |
| 70 | <configuration> |
| 71 | <instructions> |
| 72 | <Bundle-SymbolicName>org.onap.sdnc.vnftools</Bundle-SymbolicName> |
| 73 | <Export-Package>org.onap.sdnc.vnftools.*</Export-Package> |
| 74 | <Import-Package>org.onap.sdnc.*,org.osgi.framework.*,org.slf4j.*,java.net.*,org.apache.commons.*</Import-Package> |
| 75 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|mysql-connector-java|slf4j-api|jcl-over-slf4j|xml-apis|InetAddress|commons-lang3</Embed-Dependency> |
| 76 | <Embed-Transitive>true</Embed-Transitive> |
| 77 | </instructions> |
| 78 | </configuration> |
| 79 | </plugin> |
| 80 | </plugins> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 81 | |
Dan Timoney | dd3f740 | 2017-10-12 16:01:06 -0400 | [diff] [blame^] | 82 | </build> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 83 | </project> |