Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [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-dmaap-adapter</artifactId> |
| 7 | <version>1.1.0-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | |
| 10 | <artifactId>appc-message-adapter-api</artifactId> |
| 11 | <packaging>bundle</packaging> |
| 12 | <name>appc-message-adapter-api</name> |
| 13 | |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>org.openecomp.appc</groupId> |
| 17 | <artifactId>appc-metric-bundle</artifactId> |
| 18 | <version>${project.version}</version> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>org.openecomp.appc</groupId> |
| 22 | <artifactId>appc-common</artifactId> |
| 23 | <version>${project.version}</version> |
| 24 | </dependency> |
| 25 | |
| 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
| 29 | <scope>test</scope> |
| 30 | </dependency> |
| 31 | |
| 32 | <dependency> |
| 33 | <groupId>equinoxSDK381</groupId> |
| 34 | <artifactId>org.eclipse.osgi</artifactId> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
| 38 | <groupId>commons-codec</groupId> |
| 39 | <artifactId>commons-codec</artifactId> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>commons-lang</groupId> |
| 44 | <artifactId>commons-lang</artifactId> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>com.fasterxml.jackson.core</groupId> |
| 49 | <artifactId>jackson-databind</artifactId> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>com.fasterxml.jackson.core</groupId> |
| 53 | <artifactId>jackson-core</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | <artifactId>jackson-annotations</artifactId> |
| 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
| 61 | <groupId>org.mockito</groupId> |
| 62 | <artifactId>mockito-core</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.powermock</groupId> |
| 67 | <artifactId>powermock-api-mockito</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.hamcrest</groupId> |
| 72 | <artifactId>hamcrest-core</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.objenesis</groupId> |
| 76 | <artifactId>objenesis</artifactId> |
| 77 | <version>2.2</version> |
| 78 | </dependency> |
| 79 | <dependency> |
| 80 | <groupId>org.mockito</groupId> |
| 81 | <artifactId>mockito-all</artifactId> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.powermock</groupId> |
| 87 | <artifactId>powermock-module-junit4</artifactId> |
| 88 | <scope>test</scope> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>org.openecomp.sdnc.core</groupId> |
| 93 | <artifactId>sli-common</artifactId> |
| 94 | <scope>compile</scope> |
| 95 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 96 | <exclusions> |
| 97 | <exclusion> |
| 98 | <groupId>org.openecomp.sdnc.core</groupId> |
| 99 | <artifactId>dblib-provider</artifactId> |
| 100 | </exclusion> |
| 101 | </exclusions> |
| 102 | </dependency> |
| 103 | |
| 104 | <dependency> |
| 105 | <groupId>org.openecomp.sdnc.core</groupId> |
| 106 | <artifactId>sli-provider</artifactId> |
| 107 | <scope>compile</scope> |
| 108 | <!-- Added exclusion to prevent missing dependency issue on dblib --> |
| 109 | <exclusions> |
| 110 | <exclusion> |
| 111 | <groupId>org.openecomp.sdnc.core</groupId> |
| 112 | <artifactId>dblib-provider</artifactId> |
| 113 | </exclusion> |
| 114 | </exclusions> |
| 115 | </dependency> |
| 116 | |
| 117 | </dependencies> |
| 118 | |
| 119 | <build> |
| 120 | <plugins> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.felix</groupId> |
| 123 | <artifactId>maven-bundle-plugin</artifactId> |
| 124 | <extensions>true</extensions> |
| 125 | <configuration> |
| 126 | <instructions> |
| 127 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 128 | <Bundle-Version>${project.version}</Bundle-Version> |
| 129 | <Export-Package>org.openecomp.appc.adapter.message.*</Export-Package> |
| 130 | <!--<Export-Serice>org.openecomp.appc.adapter.message.EventSender</Export-Serice>--> |
| 131 | <Import-Package>org.openecomp.appc.metricservice.*,com.att.nsa.*,org.openecomp.sdnc.sli.*,org.osgi.framework.*,!org.osgi.service.event.*,org.osgi.service.*,org.osgi.util.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.*,javax.naming.*,javax.crypto.*, com.sun.jersey.spi.container.servlet,org.eclipse.jetty.servlets</Import-Package> |
| 132 | <!--<Embed-Dependency>appc-common</Embed-Dependency>--> |
| 133 | <Embed-Dependency>*;scope=compile|runtime;artifactId=!appc-metric-bundle|sli-common|sli-provider|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mysql-connector-java|xml-apis|pax-*</Embed-Dependency> |
| 134 | <Embed-Transitive>true</Embed-Transitive> |
| 135 | <Bundle-Blueprint>OSGI-INF/blueprint/blueprint.xml</Bundle-Blueprint> |
| 136 | </instructions> |
| 137 | </configuration> |
| 138 | </plugin> |
| 139 | </plugins> |
| 140 | </build> |
| 141 | </project> |