blob: 082ced4054d90f254c9e58c96956e6b4d67b3e18 [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 ================================================================================
6 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7 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=========================================================
21 ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 -->
Dilip kumar Pampana108ff432018-01-08 15:08:21 -050023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26
27 <parent>
28 <groupId>org.onap.appc</groupId>
29 <artifactId>appc-inbound</artifactId>
30 <version>1.3.0-SNAPSHOT</version>
31 </parent>
32
33 <packaging>pom</packaging>
34 <artifactId>appc-interfaces-service</artifactId>
35 <name>APPC Interface Services</name>
36
37 <dependencyManagement>
38 <dependencies>
39 <dependency>
40 <groupId>org.onap.appc</groupId>
41 <artifactId>appc-interfaces-service-features</artifactId>
42 <classifier>features</classifier>
43 <type>xml</type>
44 <version>${project.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.onap.appc</groupId>
49 <artifactId>appc-interfaces-service-model</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>org.onap.appc</groupId>
54 <artifactId>appc-interfaces-service-bundle</artifactId>
55 <version>${project.version}</version>
56 <classifier>config</classifier>
57 <type>xml</type>
58 </dependency>
59 <dependency>
60 <groupId>org.onap.appc</groupId>
61 <artifactId>appc-interfaces-service-bundle</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64
65 </dependencies>
66 </dependencyManagement>
67
68
69 <modules>
70 <module>model</module>
71 <module>features</module>
72 <module>bundle</module>
73 <module>installer</module>
74 </modules>
75 <build>
76 <pluginManagement>
77 <plugins>
78 <!--This plugin's configuration is used to store Eclipse m2e settings
79 only. It has no influence on the Maven build itself. -->
80 <plugin>
81 <groupId>org.eclipse.m2e</groupId>
82 <artifactId>lifecycle-mapping</artifactId>
83 <version>1.0.0</version>
84 <configuration>
85 <lifecycleMappingMetadata>
86 <pluginExecutions>
87 <pluginExecution>
88 <pluginExecutionFilter>
89 <groupId>
90 org.codehaus.mojo
91 </groupId>
92 <artifactId>
93 properties-maven-plugin
94 </artifactId>
95 <versionRange>
96 [1.0.0,)
97 </versionRange>
98 <goals>
99 <goal>
100 set-system-properties
101 </goal>
102 </goals>
103 </pluginExecutionFilter>
104 <action>
105 <ignore></ignore>
106 </action>
107 </pluginExecution>
108 </pluginExecutions>
109 </lifecycleMappingMetadata>
110 </configuration>
111 </plugin>
112 </plugins>
113 </pluginManagement>
114 </build>
115</project>