Dilip kumar Pampana | 108ff43 | 2018-01-08 15:08:21 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <parent> |
| 7 | <groupId>org.onap.appc</groupId> |
| 8 | <artifactId>appc-inbound</artifactId> |
| 9 | <version>1.3.0-SNAPSHOT</version> |
| 10 | </parent> |
| 11 | |
| 12 | <packaging>pom</packaging> |
| 13 | <artifactId>appc-interfaces-service</artifactId> |
| 14 | <name>APPC Interface Services</name> |
| 15 | |
| 16 | <dependencyManagement> |
| 17 | <dependencies> |
| 18 | <dependency> |
| 19 | <groupId>org.onap.appc</groupId> |
| 20 | <artifactId>appc-interfaces-service-features</artifactId> |
| 21 | <classifier>features</classifier> |
| 22 | <type>xml</type> |
| 23 | <version>${project.version}</version> |
| 24 | </dependency> |
| 25 | |
| 26 | <dependency> |
| 27 | <groupId>org.onap.appc</groupId> |
| 28 | <artifactId>appc-interfaces-service-model</artifactId> |
| 29 | <version>${project.version}</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.onap.appc</groupId> |
| 33 | <artifactId>appc-interfaces-service-bundle</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | <classifier>config</classifier> |
| 36 | <type>xml</type> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.onap.appc</groupId> |
| 40 | <artifactId>appc-interfaces-service-bundle</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | |
| 44 | </dependencies> |
| 45 | </dependencyManagement> |
| 46 | |
| 47 | |
| 48 | <modules> |
| 49 | <module>model</module> |
| 50 | <module>features</module> |
| 51 | <module>bundle</module> |
| 52 | <module>installer</module> |
| 53 | </modules> |
| 54 | <build> |
| 55 | <pluginManagement> |
| 56 | <plugins> |
| 57 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 58 | only. It has no influence on the Maven build itself. --> |
| 59 | <plugin> |
| 60 | <groupId>org.eclipse.m2e</groupId> |
| 61 | <artifactId>lifecycle-mapping</artifactId> |
| 62 | <version>1.0.0</version> |
| 63 | <configuration> |
| 64 | <lifecycleMappingMetadata> |
| 65 | <pluginExecutions> |
| 66 | <pluginExecution> |
| 67 | <pluginExecutionFilter> |
| 68 | <groupId> |
| 69 | org.codehaus.mojo |
| 70 | </groupId> |
| 71 | <artifactId> |
| 72 | properties-maven-plugin |
| 73 | </artifactId> |
| 74 | <versionRange> |
| 75 | [1.0.0,) |
| 76 | </versionRange> |
| 77 | <goals> |
| 78 | <goal> |
| 79 | set-system-properties |
| 80 | </goal> |
| 81 | </goals> |
| 82 | </pluginExecutionFilter> |
| 83 | <action> |
| 84 | <ignore></ignore> |
| 85 | </action> |
| 86 | </pluginExecution> |
| 87 | </pluginExecutions> |
| 88 | </lifecycleMappingMetadata> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </pluginManagement> |
| 93 | </build> |
| 94 | </project> |