Honeycomb 1.19.04-RC2
[honeycomb.git] / infra / rpc / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5     <parent>
6         <groupId>io.fd.honeycomb.common</groupId>
7         <artifactId>honeycomb-parent</artifactId>
8         <version>1.19.04-RC2</version>
9         <relativePath>../../common/honeycomb-parent</relativePath>
10     </parent>
11
12     <groupId>io.fd.honeycomb</groupId>
13     <artifactId>rpc-aggregator</artifactId>
14     <version>1.19.04-RC2</version>
15     <name>${project.artifactId}</name>
16     <packaging>pom</packaging>
17     <modelVersion>4.0.0</modelVersion>
18
19     <modules>
20         <module>api</module>
21         <module>impl</module>
22     </modules>
23     <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build -->
24     <build>
25         <plugins>
26             <plugin>
27                 <groupId>org.apache.maven.plugins</groupId>
28                 <artifactId>maven-deploy-plugin</artifactId>
29                 <configuration>
30                     <skip>true</skip>
31                 </configuration>
32             </plugin>
33             <plugin>
34                 <groupId>org.apache.maven.plugins</groupId>
35                 <artifactId>maven-install-plugin</artifactId>
36                 <configuration>
37                     <skip>true</skip>
38                 </configuration>
39             </plugin>
40         </plugins>
41     </build>
42 </project>