Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | ONAP : APPC |
| 5 | ================================================================================ |
John McClung | 694852f | 2018-06-13 16:10:33 -0400 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 13 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 14 | http://www.apache.org/licenses/LICENSE-2.0 |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 15 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 16 | 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 Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 22 | ============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, Irwin | 6a7b6c0 | 2019-03-03 12:20:53 -0500 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.appc.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
| 31 | <version>1.5.0-SNAPSHOT</version> |
| 32 | <relativePath /> |
| 33 | </parent> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 34 | |
| 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 Brady | 606d4e7 | 2018-08-08 10:25:15 -0700 | [diff] [blame] | 57 | <artifactId>appc-common-bundle</artifactId> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 58 | <version>${project.version}</version> |
Taka Cho | 52cf1a8 | 2019-03-13 14:40:15 -0400 | [diff] [blame^] | 59 | <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> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 70 | </dependency> |
amshegokar | f4c5c6b | 2018-03-15 19:29:52 +0530 | [diff] [blame] | 71 | <dependency> |
| 72 | <groupId>junit</groupId> |
| 73 | <artifactId>junit</artifactId> |
| 74 | <version>4.12</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 77 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 78 | <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> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 87 | <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 Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 90 | <Embed-Dependency> |
| 91 | javax.json;scope=compile|runtime;inline=false |
| 92 | </Embed-Dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 93 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 94 | <Import-Package> |
| 95 | *;resolution:=optional |
| 96 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 97 | </instructions> |
| 98 | </configuration> |
| 99 | </plugin> |
| 100 | </plugins> |
| 101 | </build> |
Patrick Brady | 606d4e7 | 2018-08-08 10:25:15 -0700 | [diff] [blame] | 102 | <groupId>org.onap.appc</groupId> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame] | 103 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 104 | </project> |