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-lifecycle-management</artifactId> |
Patrick Brady | 8843969 | 2017-02-24 00:04:10 -0800 | [diff] [blame] | 26 | <version>1.0.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-lifecycle-management-core</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
| 32 | <name>appc-lifecycle-management-core Bundle</name> |
| 33 | <description>appc-lifecycle-management-core OSGi bundle project.</description> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.openecomp.appc</groupId> |
| 38 | <artifactId>appc-lifecycle-management-api</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.openecomp.appc</groupId> |
| 43 | <artifactId>state-machine-lib</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.att.eelf</groupId> |
| 48 | <artifactId>eelf-core</artifactId> |
| 49 | <version>${eelf.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.openecomp.appc</groupId> |
| 53 | <artifactId>appc-common</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.openecomp.appc</groupId> |
| 58 | <artifactId>domain-model-lib</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | </dependencies> |
| 62 | |
| 63 | <build> |
| 64 | <plugins> |
| 65 | <plugin> |
| 66 | <groupId>org.apache.felix</groupId> |
| 67 | <artifactId>maven-bundle-plugin</artifactId> |
| 68 | <configuration> |
| 69 | <instructions> |
| 70 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 71 | <Bundle-Version>${project.version}</Bundle-Version> |
| 72 | <Embed-Dependency>appc-common,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency> |
| 73 | <Embed-Transitive>true</Embed-Transitive> |
| 74 | <Export-Service>org.openecomp.appc.lifecyclemanager.LifecycleManager</Export-Service> |
| 75 | <Import-Package>org.openecomp.appc.lifecyclemanager.*,!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> |
| 76 | </instructions> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
| 81 | |
| 82 | </project> |