Skip to content

Commit

Permalink
pm operation protobufs (#171)
Browse files Browse the repository at this point in the history
* add protobuf definitions and compiled Java classes

* remove unused maven plugin
  • Loading branch information
joshua-roberts authored Nov 14, 2024
1 parent dbff2d1 commit 322c5c6
Show file tree
Hide file tree
Showing 50 changed files with 14,901 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# compile java protobuf
protoc-gen-all:
docker run -v ${PWD}:/defs namely/protoc-all -d src/main/proto -l java -o ./src/main/java
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,33 @@
<artifactId>fastutil</artifactId>
<version>8.5.13</version>
</dependency>

<!-- grpc deps -->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.67.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.67.1</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.67.1</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>annotations-api</artifactId>
<version>6.0.53</version>
<scope>provided</scope>
</dependency>
</dependencies>

<properties>
<antlr.version>4.13.1</antlr.version>
</properties>
</project>
</project>
Loading

0 comments on commit 322c5c6

Please sign in to comment.