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