Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [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.sdnc.northbound</groupId> |
| 6 | <artifactId>vnftools</artifactId> |
Dan Timoney | 0bce413 | 2017-08-30 10:28:08 -0400 | [diff] [blame^] | 7 | <version>1.2.0-SNAPSHOT</version> |
Dan Timoney | 1b47683 | 2017-02-15 15:09:44 -0500 | [diff] [blame] | 8 | </parent> |
| 9 | <artifactId>vnftools-provider</artifactId> |
| 10 | <packaging>bundle</packaging> |
| 11 | <name>VNF Tools Plugin - Provider</name> |
| 12 | <url>http://maven.apache.org</url> |
| 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | </properties> |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>junit</groupId> |
| 19 | <artifactId>junit</artifactId> |
| 20 | <version>${junit.version}</version> |
| 21 | <scope>test</scope> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>org.openecomp.sdnc.core</groupId> |
| 25 | <artifactId>sli-common</artifactId> |
| 26 | <version>${sdnctl.sli.version}</version> |
| 27 | <scope>compile</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.openecomp.sdnc.core</groupId> |
| 31 | <artifactId>sli-provider</artifactId> |
| 32 | <version>${sdnctl.sli.version}</version> |
| 33 | <scope>compile</scope> |
| 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>equinoxSDK381</groupId> |
| 37 | <artifactId>org.eclipse.osgi</artifactId> |
| 38 | <version>${equinox.osgi.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.slf4j</groupId> |
| 42 | <artifactId>slf4j-api</artifactId> |
| 43 | <version>${slf4j.version}</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.slf4j</groupId> |
| 47 | <artifactId>jcl-over-slf4j</artifactId> |
| 48 | <version>${slf4j.version}</version> |
| 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.openecomp.sdnc.core</groupId> |
| 53 | <artifactId>sliPluginUtils-provider</artifactId> |
| 54 | <version>${sdnctl.slipluginutils.version}</version> |
| 55 | <type>jar</type> |
| 56 | <scope>compile</scope> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | |
| 60 | <build> |
| 61 | <plugins> |
| 62 | |
| 63 | |
| 64 | <plugin> |
| 65 | <groupId>org.apache.felix</groupId> |
| 66 | <artifactId>maven-bundle-plugin</artifactId> |
| 67 | <version>${bundle.plugin.version}</version> |
| 68 | <extensions>true</extensions> |
| 69 | <configuration> |
| 70 | <instructions> |
| 71 | <Bundle-SymbolicName>org.openecomp.sdnc.vnftools</Bundle-SymbolicName> |
| 72 | <Bundle-Activator>org.openecomp.sdnc.vnftools.VnfToolsActivator</Bundle-Activator> |
| 73 | <Export-Package>org.openecomp.sdnc.vnftools</Export-Package> |
| 74 | <Import-Package>org.openecomp.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> |
| 81 | |
| 82 | </build> |
| 83 | </project> |