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> |
Patrick Brady | 606d4e7 | 2018-08-08 10:25:15 -0700 | [diff] [blame] | 28 | <parent> |
| 29 | <groupId>org.onap.appc.parent</groupId> |
| 30 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 9d38008 | 2018-10-09 11:32:38 -0700 | [diff] [blame] | 31 | <version>1.4.0</version> |
Patrick Brady | 606d4e7 | 2018-08-08 10:25:15 -0700 | [diff] [blame] | 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> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
amshegokar | f4c5c6b | 2018-03-15 19:29:52 +0530 | [diff] [blame] | 61 | <dependency> |
| 62 | <groupId>junit</groupId> |
| 63 | <artifactId>junit</artifactId> |
| 64 | <version>4.12</version> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 67 | </dependencies> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 68 | <build> |
| 69 | <plugins> |
| 70 | <plugin> |
| 71 | <groupId>org.apache.felix</groupId> |
| 72 | <artifactId>maven-bundle-plugin</artifactId> |
| 73 | <configuration> |
| 74 | <instructions> |
| 75 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 76 | <Bundle-Version>${project.version}</Bundle-Version> |
Anand | 36bcd56 | 2018-01-04 19:35:51 -0500 | [diff] [blame] | 77 | <Export-Package> |
| 78 | org.onap.appc.executor,org.onap.appc.executor.objects,org.onap.appc.executor.conv,org.onap.appc.executor.helper |
| 79 | </Export-Package> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 80 | <Embed-Dependency> |
| 81 | javax.json;scope=compile|runtime;inline=false |
| 82 | </Embed-Dependency> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 83 | <Embed-Transitive>true</Embed-Transitive> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 84 | <Import-Package> |
| 85 | *;resolution:=optional |
| 86 | </Import-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | </plugins> |
| 91 | </build> |
Patrick Brady | 606d4e7 | 2018-08-08 10:25:15 -0700 | [diff] [blame] | 92 | <groupId>org.onap.appc</groupId> |
Patrick Brady | ccd67e9 | 2018-11-12 12:14:11 -0800 | [diff] [blame^] | 93 | <version>1.5.0-SNAPSHOT</version> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 94 | </project> |