blob: aa66b680d3c82befd665a57370cd5773c3de8447 [file] [log] [blame]
Anand36bcd562018-01-04 19:35:51 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
Patrick Brady57b5eef2017-02-10 15:00:49 -080013
Anand36bcd562018-01-04 19:35:51 -050014 http://www.apache.org/licenses/LICENSE-2.0
Patrick Brady57b5eef2017-02-10 15:00:49 -080015
Anand36bcd562018-01-04 19:35:51 -050016 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 ============LICENSE_END=========================================================
24 -->
25<project xmlns="http://maven.apache.org/POM/4.0.0"
26 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
28 <modelVersion>4.0.0</modelVersion>
29 <parent>
30 <groupId>org.onap.appc</groupId>
31 <artifactId>appc-dispatcher-common</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070032 <version>1.4.0-SNAPSHOT</version>
Anand36bcd562018-01-04 19:35:51 -050033 </parent>
34
35 <artifactId>appc-ranking-framework-lib</artifactId>
36 <name>APPC Ranking Framework Lib</name>
37 <packaging>bundle</packaging>
38
39 <properties>
40 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>com.att.eelf</groupId>
46 <artifactId>eelf-core</artifactId>
47 </dependency>
48 </dependencies>
49 <build>
50 <plugins>
51 <plugin>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>maven-bundle-plugin</artifactId>
54 <configuration>
55 <instructions>
56 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
57 <Bundle-Version>${project.version}</Bundle-Version>
58 <Export-Package>org.onap.appc.rankingframework</Export-Package>
59 <Private-Package>org.onap.appc.rankingframework.impl</Private-Package>
60 <Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false
61 </Embed-Dependency>
62 <Embed-Transitive>true</Embed-Transitive>
63 <Import-Package>
64 !groovy.lang,!javax.jms,!org.codehaus.commons.compiler,!org.codehaus.groovy.*,!org.codehaus.janino,!com.ibm.icu.*,!com.sun.faces.*,!org.apache.log,*
65 </Import-Package>
66 </instructions>
67 </configuration>
68 </plugin>
69 </plugins>
70 </build>
Patrick Brady57b5eef2017-02-10 15:00:49 -080071</project>