Search Gradle plugins

Generates version-agnostic Java wrapper classes from multiple protobuf schema versions. Features: automatic schema merging, type conflict resolution, Builder pattern support, VersionContext for runtime version selection.

https://github.com/alnovis/proto-wrapper-plugin

Sources: https://github.com/alnovis/proto-wrapper-plugin

Version 1.1.1 (latest)

Created 30 December 2025.

Generates version-agnostic Java wrapper classes from multiple protobuf schema versions. Features: automatic schema merging, type conflict resolution, Builder pattern support, VersionContext for runtime version selection.

Add this plugin to your build using the plugins DSL:

plugins {
  id("space.alnovis.proto-wrapper") version "1.1.1"
}

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("space.alnovis.proto-wrapper:space.alnovis.proto-wrapper.gradle.plugin:1.1.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("space.alnovis.proto-wrapper")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("space.alnovis.proto-wrapper:space.alnovis.proto-wrapper.gradle.plugin:1.1.1")
      }
    }
    
    apply(plugin = "space.alnovis.proto-wrapper")
  • Applying plugins to all subprojects .