Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <parent> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 4 | <groupId>org.onap.appc</groupId> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 5 | <artifactId>appc-dispatcher-common</artifactId> |
Jessica Wagantall | 6536799 | 2017-11-16 17:22:13 -0800 | [diff] [blame] | 6 | <version>1.3.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 7 | </parent> |
| 8 | <artifactId>appc-ranking-framework-lib</artifactId> |
| 9 | <packaging>bundle</packaging> |
| 10 | |
| 11 | |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>com.att.eelf</groupId> |
| 15 | <artifactId>eelf-core</artifactId> |
| 16 | </dependency> |
| 17 | </dependencies> |
| 18 | <build> |
| 19 | <plugins> |
| 20 | <plugin> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>maven-bundle-plugin</artifactId> |
| 23 | <configuration> |
| 24 | <instructions> |
| 25 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 26 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 27 | <Export-Package>org.onap.appc.rankingframework</Export-Package> |
| 28 | <Private-Package>org.onap.appc.rankingframework.impl</Private-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 29 | <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 30 | <Embed-Transitive>true</Embed-Transitive> |
| 31 | <Import-Package>!groovy.lang,!javax.jms,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!com.ibm.icu.*,!com.sun.faces.*,!org.apache.log,*</Import-Package> |
| 32 | </instructions> |
| 33 | </configuration> |
| 34 | </plugin> |
| 35 | </plugins> |
| 36 | </build> |
| 37 | </project> |