blob: f22edb06f1417fb972499d40b89de774de3dc8ba [file] [log] [blame]
Skip Wonnell463f70e2018-01-12 10:00:59 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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=========================================================
20 ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 -->
Anand Chaturvedie178b072017-08-14 20:10:36 -040022<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/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080026 <groupId>org.onap.appc</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040027 <artifactId>appc</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -080028 <version>1.3.0-SNAPSHOT</version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040029 </parent>
30 <artifactId>appc-outbound</artifactId>
31 <packaging>pom</packaging>
32 <name>Application Controller Outbound</name>
33 <description>Application Controller Outbound</description>
34
35 <properties>
Takamune Cho8491cc32017-12-19 10:48:02 -060036 <sdnc.aai.version>${ccsdk.sli.adaptors.version}</sdnc.aai.version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040037 </properties>
38
39
40 <dependencyManagement>
41 <dependencies>
42 <dependency>
Takamune Cho8491cc32017-12-19 10:48:02 -060043 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040044 <artifactId>sql-resource-provider</artifactId>
Patrick Bradyc5dd5d82017-11-21 11:15:32 -080045 <version>${ccsdk.sli.adaptors.version}</version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040046 </dependency>
47
48 <dependency>
Takamune Cho8491cc32017-12-19 10:48:02 -060049 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040050 <artifactId>aai-service-provider</artifactId>
51 <version>${sdnc.aai.version}</version>
52 </dependency>
53
54 </dependencies>
55 </dependencyManagement>
56
57 <modules>
58 <module>appc-aai-client</module>
59 <module>appc-network-inventory-client</module>
60 </modules>
61
62 <build>
63 <pluginManagement>
64 <plugins>
65 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
66 <plugin>
67 <groupId>org.eclipse.m2e</groupId>
68 <artifactId>lifecycle-mapping</artifactId>
69 <version>1.0.0</version>
70 <configuration>
71 <lifecycleMappingMetadata>
72 <pluginExecutions>
73 <pluginExecution>
74 <pluginExecutionFilter>
75 <groupId>
76 org.apache.maven.plugins
77 </groupId>
78 <artifactId>
79 maven-checkstyle-plugin
80 </artifactId>
81 <versionRange>
82 [2.17,)
83 </versionRange>
84 <goals>
85 <goal>check</goal>
86 </goals>
87 </pluginExecutionFilter>
88 <action>
89 <ignore></ignore>
90 </action>
91 </pluginExecution>
92 </pluginExecutions>
93 </lifecycleMappingMetadata>
94 </configuration>
95 </plugin>
96 </plugins>
97 </pluginManagement>
98 </build>
99</project>