zeebe-gateway-protocol-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-gateway-protocol-impl</artifactId>
<version>1.0.0-alpha7</version>
</dependency><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">
<modelVersion>4.0.0</modelVersion>
<name>Zeebe Gateway Protocol Implementation</name>
<artifactId>zeebe-gateway-protocol-impl</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-parent</artifactId>
<version>1.0.0-alpha7</version>
<relativePath>../parent</relativePath>
</parent>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<properties>
<version.java>8</version.java>
<license.header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</license.header>
<proto.dir>${project.build.directory}/proto</proto.dir>
</properties>
<dependencies>
<dependency>
<groupId>io.zeebe</groupId>
<artifactId>zeebe-gateway-protocol</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-api</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<!-- ensure that it runs before the protobuf plugin -->
<phase>initialize</phase>
<id>unpack proto definition</id>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>zeebe-gateway-protocol</includeArtifactIds>
<outputDirectory>${proto.dir}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<configuration>
<protoSourceRoot>${proto.dir}</protoSourceRoot>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>golang</id>
<build>
<plugins>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile-custom</goal>
</goals>
<configuration>
<pluginId>go</pluginId>
<pluginExecutable>${env.GOPATH}/bin/protoc-gen-go</pluginExecutable>
<pluginParameter>plugins=grpc</pluginParameter>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>copy-golang-proto</id>
<phase>generate-sources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy file="${project.build.directory}/generated-sources/protobuf/go/gateway.pb.go" tofile="${maven.multiModuleProjectDirectory}/clients/go/pkg/pb/gateway.pb.go" failonerror="true" />
</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>