blob: 55a046dde91a0582a24ac1654e8df9d19c8469cd [file] [log] [blame]
Skip Wonnell463f70e2018-01-12 10:00:59 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
John McClungfb3eec22018-06-14 10:17:19 -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 -->
Anand Chaturvedie178b072017-08-14 20:10:36 -040021<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
Patrick Brady07567592017-12-13 11:09:30 -080025 <groupId>org.onap.appc</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040026 <artifactId>appc</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070027 <version>1.4.0-SNAPSHOT</version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040028 </parent>
29 <artifactId>appc-outbound</artifactId>
30 <packaging>pom</packaging>
31 <name>Application Controller Outbound</name>
32 <description>Application Controller Outbound</description>
33
34 <properties>
Takamune Cho8491cc32017-12-19 10:48:02 -060035 <sdnc.aai.version>${ccsdk.sli.adaptors.version}</sdnc.aai.version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040036 </properties>
37
38
39 <dependencyManagement>
40 <dependencies>
41 <dependency>
Takamune Cho8491cc32017-12-19 10:48:02 -060042 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040043 <artifactId>sql-resource-provider</artifactId>
Patrick Bradyc5dd5d82017-11-21 11:15:32 -080044 <version>${ccsdk.sli.adaptors.version}</version>
Anand Chaturvedie178b072017-08-14 20:10:36 -040045 </dependency>
46
47 <dependency>
Takamune Cho8491cc32017-12-19 10:48:02 -060048 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Anand Chaturvedie178b072017-08-14 20:10:36 -040049 <artifactId>aai-service-provider</artifactId>
50 <version>${sdnc.aai.version}</version>
51 </dependency>
52
53 </dependencies>
54 </dependencyManagement>
55
56 <modules>
57 <module>appc-aai-client</module>
58 <module>appc-network-inventory-client</module>
59 </modules>
60
61 <build>
62 <pluginManagement>
63 <plugins>
64 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
65 <plugin>
66 <groupId>org.eclipse.m2e</groupId>
67 <artifactId>lifecycle-mapping</artifactId>
68 <version>1.0.0</version>
69 <configuration>
70 <lifecycleMappingMetadata>
71 <pluginExecutions>
72 <pluginExecution>
73 <pluginExecutionFilter>
74 <groupId>
75 org.apache.maven.plugins
76 </groupId>
77 <artifactId>
78 maven-checkstyle-plugin
79 </artifactId>
80 <versionRange>
81 [2.17,)
82 </versionRange>
83 <goals>
84 <goal>check</goal>
85 </goals>
86 </pluginExecutionFilter>
87 <action>
88 <ignore></ignore>
89 </action>
90 </pluginExecution>
91 </pluginExecutions>
92 </lifecycleMappingMetadata>
93 </configuration>
94 </plugin>
95 </plugins>
96 </pluginManagement>
97 </build>
98</project>