Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 1 | <!--
|
| 2 | ============LICENSE_START=======================================================
|
| 3 | ONAP : APPC
|
| 4 | ================================================================================
|
John McClung | fb3eec2 | 2018-06-14 10:17:19 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
|
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 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=========================================================
|
Skip Wonnell | 463f70e | 2018-01-12 10:00:59 -0600 | [diff] [blame] | 20 | -->
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 21 | <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 Brady | 0756759 | 2017-12-13 11:09:30 -0800 | [diff] [blame] | 25 | <groupId>org.onap.appc</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 26 | <artifactId>appc</artifactId>
|
Patrick Brady | 84d0a25 | 2018-05-22 10:42:55 -0700 | [diff] [blame] | 27 | <version>1.4.0-SNAPSHOT</version>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 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>
|
Takamune Cho | 8491cc3 | 2017-12-19 10:48:02 -0600 | [diff] [blame] | 35 | <sdnc.aai.version>${ccsdk.sli.adaptors.version}</sdnc.aai.version>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 36 | </properties>
|
| 37 |
|
| 38 |
|
| 39 | <dependencyManagement>
|
| 40 | <dependencies>
|
| 41 | <dependency>
|
Takamune Cho | 8491cc3 | 2017-12-19 10:48:02 -0600 | [diff] [blame] | 42 | <groupId>org.onap.ccsdk.sli.adaptors</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 43 | <artifactId>sql-resource-provider</artifactId>
|
Patrick Brady | c5dd5d8 | 2017-11-21 11:15:32 -0800 | [diff] [blame] | 44 | <version>${ccsdk.sli.adaptors.version}</version>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 45 | </dependency>
|
| 46 |
|
| 47 | <dependency>
|
Takamune Cho | 8491cc3 | 2017-12-19 10:48:02 -0600 | [diff] [blame] | 48 | <groupId>org.onap.ccsdk.sli.adaptors</groupId>
|
Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 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></ignore>
|
| 89 | </action>
|
| 90 | </pluginExecution>
|
| 91 | </pluginExecutions>
|
| 92 | </lifecycleMappingMetadata>
|
| 93 | </configuration>
|
| 94 | </plugin>
|
| 95 | </plugins>
|
| 96 | </pluginManagement>
|
| 97 | </build>
|
| 98 | </project>
|