Changed to unmaintained
[appc.git] / appc-outbound / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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   -->
22 <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">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25                 <groupId>org.onap.appc</groupId>
26                 <artifactId>appc</artifactId>
27                 <version>1.7.0-SNAPSHOT</version>
28         </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>
35                 <sdnc.aai.version>${ccsdk.sli.adaptors.version}</sdnc.aai.version>
36         </properties>
37
38
39         <dependencyManagement>
40                 <dependencies>
41                         <dependency>
42                                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
43                                 <artifactId>sql-resource-provider</artifactId>
44                                 <version>${ccsdk.sli.adaptors.version}</version>
45                         </dependency>
46
47                         <dependency>
48                                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
49                                 <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/>
89                                                                         </action>
90                                                                 </pluginExecution>
91                                                         </pluginExecutions>
92                                                 </lifecycleMappingMetadata>
93                                         </configuration>
94                                 </plugin>
95                         </plugins>
96                 </pluginManagement>
97         </build>
98 </project>