blob: eef51a5ac6d9015bb915d112cb9342684945738c [file] [log] [blame]
Dilip kumar Pampana108ff432018-01-08 15:08:21 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell463f70e2018-01-12 10:00:59 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClung3a78edb2018-06-13 17:17:15 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell463f70e2018-01-12 10:00:59 -06007 Copyright (C) 2017 Amdocs
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
Skip Wonnell463f70e2018-01-12 10:00:59 -060021 -->
Dilip kumar Pampana108ff432018-01-08 15:08:21 -050022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
Patrick Bradyca4f7e12018-08-13 22:38:26 -070027 <groupId>org.onap.appc.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Patrick Brady8183cf12019-05-20 23:12:51 -070029 <version>2.6.0-SNAPSHOT</version>
Patrick Bradyca4f7e12018-08-13 22:38:26 -070030 <relativePath />
Dilip kumar Pampana108ff432018-01-08 15:08:21 -050031 </parent>
Patrick Bradyca4f7e12018-08-13 22:38:26 -070032 <groupId>org.onap.appc</groupId>
Dilip kumar Pampana108ff432018-01-08 15:08:21 -050033
34 <packaging>pom</packaging>
35 <artifactId>appc-interfaces-service</artifactId>
36 <name>APPC Interface Services</name>
37
38 <dependencyManagement>
39 <dependencies>
40 <dependency>
41 <groupId>org.onap.appc</groupId>
42 <artifactId>appc-interfaces-service-features</artifactId>
43 <classifier>features</classifier>
44 <type>xml</type>
45 <version>${project.version}</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.onap.appc</groupId>
50 <artifactId>appc-interfaces-service-model</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.appc</groupId>
55 <artifactId>appc-interfaces-service-bundle</artifactId>
56 <version>${project.version}</version>
57 <classifier>config</classifier>
58 <type>xml</type>
59 </dependency>
60 <dependency>
61 <groupId>org.onap.appc</groupId>
62 <artifactId>appc-interfaces-service-bundle</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65
66 </dependencies>
67 </dependencyManagement>
68
69
70 <modules>
71 <module>model</module>
72 <module>features</module>
73 <module>bundle</module>
74 <module>installer</module>
75 </modules>
76 <build>
77 <pluginManagement>
78 <plugins>
79 <!--This plugin's configuration is used to store Eclipse m2e settings
80 only. It has no influence on the Maven build itself. -->
81 <plugin>
82 <groupId>org.eclipse.m2e</groupId>
83 <artifactId>lifecycle-mapping</artifactId>
84 <version>1.0.0</version>
85 <configuration>
86 <lifecycleMappingMetadata>
87 <pluginExecutions>
88 <pluginExecution>
89 <pluginExecutionFilter>
90 <groupId>
91 org.codehaus.mojo
92 </groupId>
93 <artifactId>
94 properties-maven-plugin
95 </artifactId>
96 <versionRange>
97 [1.0.0,)
98 </versionRange>
99 <goals>
100 <goal>
101 set-system-properties
102 </goal>
103 </goals>
104 </pluginExecutionFilter>
105 <action>
106 <ignore></ignore>
107 </action>
108 </pluginExecution>
109 </pluginExecutions>
110 </lifecycleMappingMetadata>
111 </configuration>
112 </plugin>
113 </plugins>
114 </pluginManagement>
115 </build>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -0700116 <version>1.6.0-SNAPSHOT</version>
Dilip kumar Pampana108ff432018-01-08 15:08:21 -0500117</project>