forked from bufbuild/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added reactor-grpc v1.2.4 (bufbuild#701)
- Loading branch information
1 parent
73b7b3a
commit 41803de
Showing
4 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
source: | ||
github: | ||
owner: salesforce | ||
repository: reactive-grpc |
2 changes: 2 additions & 0 deletions
2
plugins/community/salesforce-reactive-grpc-java/v1.2.4/.dockerignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* | ||
!Dockerfile |
10 changes: 10 additions & 0 deletions
10
plugins/community/salesforce-reactive-grpc-java/v1.2.4/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM adoptopenjdk/openjdk11:jre-11.0.20_8-debianslim | ||
ARG LOCATION_PREFIX="https://repo1.maven.org/maven2/com/salesforce/servicelibs/reactor-grpc/1.2.4/reactor-grpc-1.2.4-" | ||
ARG PLUGIN_NAME=protoc-gen-reactor-grpc | ||
|
||
RUN apt-get update && apt-get upgrade -y && apt-get install -y wget | ||
RUN case $(uname -m) in "aarch64") echo linux-aarch_64 ;; "x86_64") echo linux-x86_64;; esac >arch.txt | ||
RUN wget -O ${PLUGIN_NAME} ${LOCATION_PREFIX}$(cat arch.txt).exe | ||
RUN chmod 0755 ${PLUGIN_NAME} | ||
USER 65534 | ||
CMD ./protoc-gen-reactor-grpc |
9 changes: 9 additions & 0 deletions
9
plugins/community/salesforce-reactive-grpc-java/v1.2.4/buf.plugin.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: v1 | ||
name: salesforce-reactive-grpc-java | ||
plugin_version: v1.2.4 | ||
source_url: https://github.com/salesforce/reactive-grpc | ||
description: Reactor gRPC generator | ||
output_languages: | ||
- java | ||
spdx_license_id: BSD-3-Clause | ||
license_url: https://github.com/salesforce/reactive-grpc/blob/v1.2.4/LICENSE |