diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2016-12-11 17:25:23 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2016-12-13 13:34:59 +0100 |
commit | ac0409a9987fdf6440665f03aa1ad2c2466dad28 (patch) | |
tree | 9487a7aca60805504ec59e3dee6db5c7c6d3c1a9 /infra/rpc/pom.xml | |
parent | 8be1783be737e79fbcb7e4377b920959cf1f7198 (diff) |
HONEYCOMB-151: Rpc supportv1.17.01-RC0
Change-Id: Iccffe5412b4bb06b606b66f7c0e7ebd601d5a7d1
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'infra/rpc/pom.xml')
-rw-r--r-- | infra/rpc/pom.xml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/infra/rpc/pom.xml b/infra/rpc/pom.xml new file mode 100644 index 000000000..64bd9d530 --- /dev/null +++ b/infra/rpc/pom.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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"> + <parent> + <groupId>io.fd.honeycomb.common</groupId> + <artifactId>honeycomb-parent</artifactId> + <version>1.17.01-SNAPSHOT</version> + <relativePath>../../common/honeycomb-parent</relativePath> + </parent> + + <groupId>io.fd.honeycomb</groupId> + <artifactId>rpc-aggregator</artifactId> + <version>1.17.01-SNAPSHOT</version> + <name>${project.artifactId}</name> + <packaging>pom</packaging> + <modelVersion>4.0.0</modelVersion> + + <modules> + <module>api</module> + <module>impl</module> + </modules> + <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build --> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-install-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> +</project>
\ No newline at end of file |