Skip to content

Commit

Permalink
fix: java client libraries (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishekvrshny authored Nov 29, 2024
1 parent 5616b5f commit 55483fb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/client.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Link : [https://central.sonatype.com/artifact/io.github.abhishekvrshny/propeller
### Gradle

```
implementation group: 'io.github.abhishekvrshny', name: 'propeller', version: '0.0.3'
implementation group: 'io.github.abhishekvrshny', name: 'propeller', version: '0.0.5'
```

{: .note }
Expand Down
17 changes: 12 additions & 5 deletions tools/prototool/java/maven/pom.xml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -62,17 +62,24 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.68.2</version>
<version>1.68.1</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.68.2</version>
<version>1.68.1</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.68.1</version>
<scope>runtime</scope>
</dependency>
<dependency> <!-- necessary for Java 9+ -->
<groupId>org.apache.tomcat</groupId>
<artifactId>annotations-api</artifactId>
<version>6.0.53</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion tools/prototool/prototool.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
if err != nil {
logger.Ctx(ctx).Fatal(err)
}
err = javaHandler.BuildAndPublish(ctx, "0.0.3")
err = javaHandler.BuildAndPublish(ctx, "0.0.5")
if err != nil {
logger.Ctx(ctx).Fatal(err.Error())
}
Expand Down

0 comments on commit 55483fb

Please sign in to comment.