Skip to content

Commit

Permalink
add community/scalapb-scala plugin
Browse files Browse the repository at this point in the history
Fixes: #98

Co-authored-by: 11Dimensions <[email protected]>
Co-authored-by: Philip K. Warren <[email protected]>
  • Loading branch information
3 people authored Jan 13, 2023
1 parent 126f6fc commit adabf5f
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/community/scalapb-scala/source.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source:
github:
owner: scalapb
repository: scalapb
2 changes: 2 additions & 0 deletions plugins/community/scalapb-scala/v0.11.12/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!Dockerfile
15 changes: 15 additions & 0 deletions plugins/community/scalapb-scala/v0.11.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# syntax=docker/dockerfile:1.4
FROM debian:bullseye-20230109 AS build

ARG TARGETARCH

RUN apt-get update \
&& apt-get install -y curl

#This script embeds the the .class files and is a self contained jvm protoc plugin. See https://scalapb.github.io/docs/scalapbc/#using-scalapb-as-a-proper-protoc-plugin for more details
RUN curl -fsSL -o protoc-gen-scala.jar https://repo1.maven.org/maven2/com/thesamet/scalapb/protoc-gen-scala/0.11.12/protoc-gen-scala-0.11.12-unix.sh

FROM gcr.io/distroless/java11-debian11
COPY --from=build --link /protoc-gen-scala.jar .
USER nobody
ENTRYPOINT [ "/usr/bin/java", "-jar", "/protoc-gen-scala.jar"]
9 changes: 9 additions & 0 deletions plugins/community/scalapb-scala/v0.11.12/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: v1
name: buf.build/community/scalapb-scala
plugin_version: v0.11.12
source_url: https://github.com/scalapb/scalapb
description: Base types for Scala. Generates message and enum types.
output_languages:
- scala
spdx_license_id: Apache-2.0
license_url: https://github.com/scalapb/ScalaPB/blob/v0.11.12/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:8ybHDT7xcm2OEoVkEDg3Yoc0JJySTC1aZ3ZHH6PK+Gw=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:6yZvJ4tBl8nrZrSh8J67Rvc6ZZRobO6G22KjS26PUtc=

0 comments on commit adabf5f

Please sign in to comment.