Search Gradle plugins

com.bisnode.opa

Plugin adding various tasks to help out integrating Open Policy Agent (OPA) in Gradle builds.

https://github.com/Bisnode/opa-gradle-plugin

Sources: https://github.com/Bisnode/opa-gradle-plugin

Version 0.4.2 (latest)

0.4.2

Created 21 December 2023.

Plugin adding various tasks to help out integrating Open Policy Agent (OPA) in Gradle builds.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bisnode.opa") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.bisnode.opa:opa-gradle-plugin:0.4.2")
      }
    }
    
    apply(plugin = "com.bisnode.opa")
  • Applying plugins to all subprojects .