All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.tomlee.gradle.plugins.protoc.GradleProtocPlugin.groovy Maven / Gradle / Ivy

Go to download

Gradle plugin for protoc, the code generator typically associated with Google's Protocol Buffers

There is a newer version: 0.0.3
Show newest version
package co.tomlee.gradle.plugins.protoc

import org.gradle.api.Plugin
import org.gradle.api.Project

import co.tomlee.gradle.plugins.protoc.tasks.ProtobufCompile;


class GradleProtocPlugin implements Plugin {
    @Override
    public void apply(Project project) {
        project.extensions.create("protoc", GradleProtocPluginExtension, project)
        project.ext.ProtobufCompile = ProtobufCompile
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy