blob: 0469b1ab2999549fc2333407abf8a13232beb032 [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 ================================================================================
John McClung694852f2018-06-13 16:10:33 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Anand36bcd562018-01-04 19:35:51 -05007 ================================================================================
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.
Patrick Brady57b5eef2017-02-10 15:00:49 -080021
Anand36bcd562018-01-04 19:35:51 -050022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
Dunietz, Irwin6a7b6c02019-03-03 12:20:53 -050028 <parent>
29 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
31 <version>1.5.0-SNAPSHOT</version>
32 <relativePath />
33 </parent>
Anand36bcd562018-01-04 19:35:51 -050034
35 <artifactId>appc-command-executor-api</artifactId>
36 <packaging>bundle</packaging>
37 <name>APPC Command Executor - API</name>
38 <url>http://maven.apache.org</url>
39
40 <properties>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onap.appc</groupId>
47 <artifactId>execution-queue-management-lib</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.onap.appc</groupId>
52 <artifactId>domain-model-lib</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.appc</groupId>
Patrick Brady606d4e72018-08-08 10:25:15 -070057 <artifactId>appc-common-bundle</artifactId>
Anand36bcd562018-01-04 19:35:51 -050058 <version>${project.version}</version>
Taka Cho52cf1a82019-03-13 14:40:15 -040059 <exclusions>
60 <exclusion>
61 <groupId>com.fasterxml.jackson.core</groupId>
62 <artifactId>jackson-databind</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66 <dependency>
67 <groupId>com.fasterxml.jackson.core</groupId>
68 <artifactId>jackson-databind</artifactId>
69 <version>2.8.11.3</version>
Anand36bcd562018-01-04 19:35:51 -050070 </dependency>
amshegokarf4c5c6b2018-03-15 19:29:52 +053071 <dependency>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
74 <version>4.12</version>
75 <scope>test</scope>
76 </dependency>
Anand36bcd562018-01-04 19:35:51 -050077 </dependencies>
Patrick Brady57b5eef2017-02-10 15:00:49 -080078 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-bundle-plugin</artifactId>
83 <configuration>
84 <instructions>
85 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
86 <Bundle-Version>${project.version}</Bundle-Version>
Anand36bcd562018-01-04 19:35:51 -050087 <Export-Package>
88 org.onap.appc.executor,org.onap.appc.executor.objects,org.onap.appc.executor.conv,org.onap.appc.executor.helper
89 </Export-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -070090 <Embed-Dependency>
91 javax.json;scope=compile|runtime;inline=false
92 </Embed-Dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080093 <Embed-Transitive>true</Embed-Transitive>
Patrick Bradyc7d00752017-06-01 10:45:37 -070094 <Import-Package>
95 *;resolution:=optional
96 </Import-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080097 </instructions>
98 </configuration>
99 </plugin>
100 </plugins>
101 </build>
Patrick Brady606d4e72018-08-08 10:25:15 -0700102 <groupId>org.onap.appc</groupId>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800103 <version>1.5.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800104</project>