Abhijit Sarkar

Results 224 comments of Abhijit Sarkar

Hi @ejona86 > why do we need field.isAccessible = true Assuming you're referring to [this line](https://github.com/asarkar/grpc-test/blob/master/src/main/kotlin/com/asarkar/grpc/test/GrpcCleanupExtension.kt#L81), this is required to support the [use cases](https://github.com/asarkar/grpc-test#usage) 2 and 3 documented in the...

@jon-abdulloev-globality Java version, as in Java source code? No. Why do you ask?

I ran into this problem today, and @debop solution worked for me, except I'm using the latest protobuf plugin. Is this documented somewhere where it can be more easily found...

@lowasser Thanks for your response. My use case is bidi streaming, where the client may generate more messages based on the server's response. The problem I reported is in a...

If you're supplying signing key etc as GitHub secrets, those need to be Base64 encoded. See [this project](https://github.com/asarkar/grpc-test) for a fully working solution. I had created https://github.com/gradle-nexus/publish-plugin/issues/85 which would alleviate...

> Setting up the OpenPGP infrastructure locally, registering in Sonatype or adding requested properties to generated pom.xml I'm not sure what infrastructure you mean, since generating the keys and registering...

> what steps are required to start publishing to Maven Central This article does a pretty good job http://tutorials.jenkov.com/maven/publish-to-central-maven-repository.html I recently migrated from publishing to JCenter to Maven Central (previously...

@szpak "Repository with id 'xxx-1234' effectively released" isn't what I'm looking for. It's not unlikely that the user has mistyped/misconfigured the version, especially if they use Git tags for versioning,...

> publishing plugin to display published artifacts In that case, I can follow [my own advice](https://stackoverflow.com/a/53678029/839733): ``` tasks.withType(PublishToMavenRepository) { doFirst { println("Publishing ${publication.groupId}:${publication.artifactId}:${publication.version} to ${repository.url}") } } ``` I was...

@szpak @marcphilipp Any word on this?