Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [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 | <!-- |
| 5 | |
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | contributor license agreements. See the NOTICE file distributed with |
| 8 | this work for additional information regarding copyright ownership. |
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 10 | (the "License"); you may not use this file except in compliance with |
| 11 | the License. You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | --> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.openecomp.appc</groupId> |
| 25 | <artifactId>appc-metric</artifactId> |
Patrick Brady | 03682da | 2017-03-10 13:07:19 -0800 | [diff] [blame^] | 26 | <version>1.1.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 27 | </parent> |
| 28 | <groupId>org.openecomp.appc</groupId> |
| 29 | <artifactId>appc-metric-bundle</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <name>appc-metric-bundle Bundle</name> |
| 33 | <description>appc-metric-bundle OSGi bundle project.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.osgi</groupId> |
| 38 | <artifactId>org.osgi.core</artifactId> |
| 39 | <version>4.2.0</version> |
| 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.openecomp.appc</groupId> |
| 44 | <artifactId>appc-common</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>junit</groupId> |
| 49 | <artifactId>junit</artifactId> |
| 50 | <version>4.11</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.mockito</groupId> |
| 55 | <artifactId>mockito-core</artifactId> |
| 56 | <version>1.10.19</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.powermock</groupId> |
| 60 | <artifactId>powermock-api-mockito</artifactId> |
| 61 | <version>1.6.2</version> |
| 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.hamcrest</groupId> |
| 66 | <artifactId>hamcrest-core</artifactId> |
| 67 | <version>1.3</version> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.objenesis</groupId> |
| 71 | <artifactId>objenesis</artifactId> |
| 72 | <version>2.2</version> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.mockito</groupId> |
| 76 | <artifactId>mockito-all</artifactId> |
| 77 | <version>1.8.4</version> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.powermock</groupId> |
| 82 | <artifactId>powermock-module-junit4</artifactId> |
| 83 | <version>1.6.2</version> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
| 87 | |
| 88 | <build> |
| 89 | <plugins> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.felix</groupId> |
| 92 | <artifactId>maven-bundle-plugin</artifactId> |
| 93 | <version>2.3.7</version> |
| 94 | <extensions>true</extensions> |
| 95 | <configuration> |
| 96 | <instructions> |
| 97 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 98 | <Bundle-Version>${project.version}</Bundle-Version> |
| 99 | <Bundle-Activator>org.openecomp.appc.MetricActivator</Bundle-Activator> |
| 100 | <Embed-Dependency>appc-common,eelf-core,logback-core,logback-classic,appc-data-lib;scope=compile|runtime;inline=false</Embed-Dependency> |
| 101 | <Embed-Transitive>true</Embed-Transitive> |
| 102 | <Export-Service>org.openecomp.appc.metricservice.impl.MetricServiceImpl,org.openecomp.appc.metricservice.MetricService,org.openecomp.appc.metricservice.policy.*,org.openecomp.appc.metricservice.metric.*</Export-Service> |
| 103 | <Export-Package>org.openecomp.appc.metricservice,org.openecomp.appc.metricservice.impl,org.openecomp.appc.metricservice.policy,org.openecomp.appc.metricservice.publisher,org.openecomp.appc.metricservice.metric</Export-Package> |
| 104 | <Import-Package>!groovy.lang,!javax.*,!org.apache.log,!org.apache.log4j.*,!org.codehaus.jackson.*,!org.codehaus.jackson.map.*,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.apache.commons.lang3,!org.codehaus.janino,!org.jasypt.*,!com.ibm.icu.*,!com.sun.faces.*,*</Import-Package> |
| 105 | </instructions> |
| 106 | </configuration> |
| 107 | </plugin> |
| 108 | </plugins> |
| 109 | </build> |
| 110 | |
| 111 | </project> |