blob: 373ceb1a51a64e3f7e6a001e883ab2dc9d293648 [file] [log] [blame]
Skip Wonnell463f70e2018-01-12 10:00:59 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
John McClung3a78edb2018-06-13 17:17:15 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell463f70e2018-01-12 10:00:59 -06006 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 Wonnell463f70e2018-01-12 10:00:59 -060020 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080021<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 Brady57b5eef2017-02-10 15:00:49 -080022 <parent>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070023 <groupId>org.onap.appc.parent</groupId>
24 <artifactId>binding-parent</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070025 <version>1.4.0-SNAPSHOT</version>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070026 <relativePath />
Patrick Brady57b5eef2017-02-10 15:00:49 -080027 </parent>
Patrick Brady57b5eef2017-02-10 15:00:49 -080028
beili.zhoufe0e9892017-08-10 14:54:42 -040029 <modelVersion>4.0.0</modelVersion>
30 <artifactId>state-machine-lib</artifactId>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070031 <groupId>org.onap.appc</groupId>
32 <version>1.4.0-SNAPSHOT</version>
beili.zhoufe0e9892017-08-10 14:54:42 -040033 <packaging>bundle</packaging>
Patrick Brady57b5eef2017-02-10 15:00:49 -080034
beili.zhoufe0e9892017-08-10 14:54:42 -040035 <name>state-machine-lib</name>
36 <url>http://maven.apache.org</url>
37
38 <dependencies>
39 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080040 <groupId>org.onap.appc</groupId>
beili.zhoufe0e9892017-08-10 14:54:42 -040041 <artifactId>appc-lifecycle-management-api</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070042 <version>1.4.0-SNAPSHOT</version>
beili.zhoufe0e9892017-08-10 14:54:42 -040043 </dependency>
beili.zhouab6544c2017-09-22 17:16:48 -040044 <dependency>
45 <groupId>org.mockito</groupId>
46 <artifactId>mockito-core</artifactId>
47 </dependency>
Patrick Bradyb4e7e112018-08-07 11:44:12 -070048 <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.zhoufe0e9892017-08-10 14:54:42 -040058 </dependencies>
59
60 <properties>
61 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62 </properties>
63
Patrick Brady57b5eef2017-02-10 15:00:49 -080064 <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 Brady07567592017-12-13 11:09:30 -080073 <Export-Package>org.onap.appc.statemachine.*</Export-Package>
Patrick Brady57b5eef2017-02-10 15:00:49 -080074 </instructions>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
79</project>