blob: 5c395a5a9194681ef05e9dc27fcd236558afeeb0 [file] [log] [blame]
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +05301<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8e5e3172018-01-11 14:10:33 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungfb3eec22018-06-14 10:17:19 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8e5e3172018-01-11 14:10:33 -06007 ================================================================================
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
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
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.
21
Skip Wonnell8e5e3172018-01-11 14:10:33 -060022 ============LICENSE_END=========================================================
23-->
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053024<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">
25 <modelVersion>4.0.0</modelVersion>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070026 <parent>
27 <groupId>org.onap.appc.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080029 <version>1.5.0-SNAPSHOT</version>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070030 <relativePath />
31 </parent>
Patrick Brady07567592017-12-13 11:09:30 -080032 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053033 <artifactId>appc-sequence-generator</artifactId>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -070034 <version>1.6.0-SNAPSHOT</version>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053035 <name>appc-sequence-generator</name>
36 <packaging>pom</packaging>
37
38
39 <properties>
40 <bundle.plugin.version>2.5.0</bundle.plugin.version>
41 <feature-name>appc-sequence-generator</feature-name>
42 </properties>
43 <dependencyManagement>
44 <dependencies>
45 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080046 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053047 <artifactId>appc-sequence-generator-model</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080051 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053052 <artifactId>appc-sequence-generator-features</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080056 <groupId>org.onap.appc</groupId>
Kalpesh Chaniyara5b759092017-08-15 23:40:34 +053057 <artifactId>appc-sequence-generator-bundle</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 </dependencies>
61 </dependencyManagement>
62
63 <modules>
64 <module>appc-sequence-generator-model</module>
65 <module>appc-sequence-generator-bundle</module>
66 <module>appc-sequence-generator-features</module>
67 <module>appc-sequence-generator-installer</module>
68 </modules>
Patrick Bradyd3ef5472018-08-10 15:14:38 -070069</project>