Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP : APPC |
| 4 | ================================================================================ |
John McClung | 3a78edb | 2018-06-13 17:17:15 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 6 | Copyright (C) 2017 Amdocs |
| 7 | ================================================================================ |
| 8 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | you may not use this file except in compliance with the License. |
| 10 | You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | ============LICENSE_END========================================================= |
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 20 | --> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 21 | <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"> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 22 | <parent> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 23 | <groupId>org.onap.appc.parent</groupId> |
| 24 | <artifactId>binding-parent</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 25 | <version>1.4.0-SNAPSHOT</version> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 26 | <relativePath /> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 27 | </parent> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 28 | |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 29 | <modelVersion>4.0.0</modelVersion> |
| 30 | <artifactId>state-machine-lib</artifactId> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 31 | <groupId>org.onap.appc</groupId> |
| 32 | <version>1.4.0-SNAPSHOT</version> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 33 | <packaging>bundle</packaging> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 34 | |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 35 | <name>state-machine-lib</name> |
| 36 | <url>http://maven.apache.org</url> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 40 | <groupId>org.onap.appc</groupId> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 41 | <artifactId>appc-lifecycle-management-api</artifactId> |
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 42 | <version>1.4.0-SNAPSHOT</version> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 43 | </dependency> |
beili.zhou | ab6544c | 2017-09-22 17:16:48 -0400 | [diff] [blame] | 44 | <dependency> |
| 45 | <groupId>org.mockito</groupId> |
| 46 | <artifactId>mockito-core</artifactId> |
| 47 | </dependency> |
Patrick Brady | b4e7e11 | 2018-08-07 11:44:12 -0700 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.onap.appc</groupId> |
| 50 | <artifactId>appc-common-bundle</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.osgi</groupId> |
| 55 | <artifactId>org.osgi.core</artifactId> |
| 56 | <version>5.0.0</version> |
| 57 | </dependency> |
beili.zhou | fe0e989 | 2017-08-10 14:54:42 -0400 | [diff] [blame] | 58 | </dependencies> |
| 59 | |
| 60 | <properties> |
| 61 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 62 | </properties> |
| 63 | |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>maven-bundle-plugin</artifactId> |
| 69 | <configuration> |
| 70 | <instructions> |
| 71 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 72 | <Bundle-Version>${project.version}</Bundle-Version> |
Patrick Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 73 | <Export-Package>org.onap.appc.statemachine.*</Export-Package> |
Patrick Brady | 57b5eef | 2017-02-10 15:00:49 -0800 | [diff] [blame] | 74 | </instructions> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | </project> |