Moving all files to root directory
[appc.git] / appc-dispatcher / appc-dispatcher-common / execution-queue-management-lib / pom.xml
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>
4         <groupId>org.openecomp.appc</groupId>
5         <artifactId>appc-dispatcher-common</artifactId>
6         <version>1.0.0</version>
7     </parent>
8   <artifactId>execution-queue-management-lib</artifactId>
9   <packaging>bundle</packaging>
10
11   <name>execution-queue-management-lib</name>
12   <url>http://maven.apache.org</url>
13
14   <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16   </properties>
17
18   <dependencies>
19     <dependency>
20         <groupId>org.openecomp.appc</groupId>
21         <artifactId>appc-common</artifactId>
22         <version>${project.version}</version>
23     </dependency>
24         <dependency>
25       <groupId>com.att.eelf</groupId>
26       <artifactId>eelf-core</artifactId>
27       </dependency>
28   </dependencies>
29   
30       <build>
31         <plugins>
32             <plugin>
33                 <groupId>org.apache.felix</groupId>
34                 <artifactId>maven-bundle-plugin</artifactId>
35                 <configuration>
36                     <instructions>
37                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
38                         <Bundle-Version>${project.version}</Bundle-Version>
39                                     <Embed-Dependency>appc-common,eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency>
40                         <Embed-Transitive>true</Embed-Transitive>
41                         <Export-Package>org.openecomp.appc.executionqueue,org.openecomp.appc.executionqueue.impl</Export-Package>
42                         <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>
43                     </instructions>
44                 </configuration>
45             </plugin>
46         </plugins>
47     </build>
48 </project>