Dan Timoney | 2a93b9d | 2017-07-18 19:40:01 -0400 | [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 | |
| 4 | <artifactId>sliPluginUtils-provider</artifactId> |
| 5 | <packaging>bundle</packaging> |
| 6 | <modelVersion>4.0.0</modelVersion> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdnc.core</groupId> |
| 10 | <artifactId>sliPluginUtils</artifactId> |
| 11 | <version>0.0.1-SNAPSHOT</version> |
| 12 | </parent> |
| 13 | |
| 14 | <name>SliPluginUtils Plugin - Provider</name> |
| 15 | <url>http://maven.apache.org</url> |
| 16 | |
| 17 | <properties> |
| 18 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 19 | </properties> |
| 20 | |
| 21 | <dependencies> |
| 22 | <dependency> |
| 23 | <groupId>junit</groupId> |
| 24 | <artifactId>junit</artifactId> |
| 25 | <version>4.11</version> |
| 26 | <scope>test</scope> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.openecomp.sdnc.core</groupId> |
| 30 | <artifactId>sli-common</artifactId> |
| 31 | <version>${project.version}</version> |
| 32 | <scope>compile</scope> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>equinoxSDK381</groupId> |
| 36 | <artifactId>org.eclipse.osgi</artifactId> |
| 37 | <version>${equinox.osgi.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.slf4j</groupId> |
| 41 | <artifactId>slf4j-api</artifactId> |
| 42 | <version>${slf4j.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.slf4j</groupId> |
| 46 | <artifactId>jcl-over-slf4j</artifactId> |
| 47 | <version>${slf4j.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.apache.commons</groupId> |
| 51 | <artifactId>commons-lang3</artifactId> |
| 52 | <version>3.1</version> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.hamcrest</groupId> |
| 56 | <artifactId>hamcrest-library</artifactId> |
| 57 | <version>1.3</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | </dependencies> |
| 61 | |
| 62 | <build> |
| 63 | <plugins> |
| 64 | |
| 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.openecomp.sdnc.sli.SliPluginUtils</Bundle-SymbolicName> |
| 73 | <Bundle-Activator>org.openecomp.sdnc.sli.SliPluginUtils.SliPluginUtilsActivator</Bundle-Activator> |
| 74 | <Export-Package>org.openecomp.sdnc.sli.SliPluginUtils</Export-Package> |
| 75 | <Import-Package>org.openecomp.sdnc.*,org.osgi.framework.*,org.slf4j.*,java.net.*</Import-Package> |
| 76 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|mysql-connector-java|slf4j-api|jcl-over-slf4j</Embed-Dependency> |
| 77 | <Embed-Transitive>true</Embed-Transitive> |
| 78 | </instructions> |
| 79 | </configuration> |
| 80 | </plugin> |
| 81 | |
| 82 | </plugins> |
| 83 | |
| 84 | </build> |
| 85 | </project> |