Anand Chaturvedi | e178b07 | 2017-08-14 20:10:36 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 3 | <modelVersion>4.0.0</modelVersion>
|
| 4 | <parent>
|
| 5 | <groupId>org.openecomp.appc</groupId>
|
| 6 | <artifactId>appc</artifactId>
|
| 7 | <version>1.1.0-SNAPSHOT</version>
|
| 8 | </parent>
|
| 9 | <artifactId>appc-outbound</artifactId>
|
| 10 | <packaging>pom</packaging>
|
| 11 | <name>Application Controller Outbound</name>
|
| 12 | <description>Application Controller Outbound</description>
|
| 13 |
|
| 14 | <properties>
|
| 15 | <sdnc.aai.version>1.1.2</sdnc.aai.version>
|
| 16 | </properties>
|
| 17 |
|
| 18 |
|
| 19 | <dependencyManagement>
|
| 20 | <dependencies>
|
| 21 | <dependency>
|
| 22 | <groupId>org.openecomp.sdnc.adaptors</groupId>
|
| 23 | <artifactId>sql-resource-provider</artifactId>
|
| 24 | <version>${openecomp.sdnc.sql-resource.version}</version>
|
| 25 | </dependency>
|
| 26 |
|
| 27 | <dependency>
|
| 28 | <groupId>org.openecomp.sdnc.adaptors</groupId>
|
| 29 | <artifactId>aai-service-provider</artifactId>
|
| 30 | <version>${sdnc.aai.version}</version>
|
| 31 | </dependency>
|
| 32 |
|
| 33 | </dependencies>
|
| 34 | </dependencyManagement>
|
| 35 |
|
| 36 | <modules>
|
| 37 | <module>appc-aai-client</module>
|
| 38 | <module>appc-network-inventory-client</module>
|
| 39 | </modules>
|
| 40 |
|
| 41 | <build>
|
| 42 | <pluginManagement>
|
| 43 | <plugins>
|
| 44 | <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
|
| 45 | <plugin>
|
| 46 | <groupId>org.eclipse.m2e</groupId>
|
| 47 | <artifactId>lifecycle-mapping</artifactId>
|
| 48 | <version>1.0.0</version>
|
| 49 | <configuration>
|
| 50 | <lifecycleMappingMetadata>
|
| 51 | <pluginExecutions>
|
| 52 | <pluginExecution>
|
| 53 | <pluginExecutionFilter>
|
| 54 | <groupId>
|
| 55 | org.apache.maven.plugins
|
| 56 | </groupId>
|
| 57 | <artifactId>
|
| 58 | maven-checkstyle-plugin
|
| 59 | </artifactId>
|
| 60 | <versionRange>
|
| 61 | [2.17,)
|
| 62 | </versionRange>
|
| 63 | <goals>
|
| 64 | <goal>check</goal>
|
| 65 | </goals>
|
| 66 | </pluginExecutionFilter>
|
| 67 | <action>
|
| 68 | <ignore></ignore>
|
| 69 | </action>
|
| 70 | </pluginExecution>
|
| 71 | </pluginExecutions>
|
| 72 | </lifecycleMappingMetadata>
|
| 73 | </configuration>
|
| 74 | </plugin>
|
| 75 | </plugins>
|
| 76 | </pluginManagement>
|
| 77 | </build>
|
| 78 | </project>
|