com.hedera.pbj.pbj-compiler
The PBJ Protobuf plugin provides protobuf compilation to java records.
https://github.com/hashgraph/pbj
Sources: https://github.com/hashgraph/pbj
Version 0.7.18
Created 01 February 2024.
                The PBJ Protobuf plugin provides protobuf compilation to java records.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.hedera.pbj.pbj-compiler") version "0.7.18"
}See also:
- 
                Adding the plugin to build logic for usage in precompiled script plugins.See the relevant documentation for more information. Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.hedera.pbj.pbj-compiler:com.hedera.pbj.pbj-compiler.gradle.plugin:0.7.18") }It can then be applied in the precompiled script plugin:plugins { id("com.hedera.pbj.pbj-compiler") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hedera.pbj.pbj-compiler:com.hedera.pbj.pbj-compiler.gradle.plugin:0.7.18") } } apply(plugin = "com.hedera.pbj.pbj-compiler")
- Applying plugins to all subprojects .