Search Gradle plugins

dev.lukebemish.opensesame

Gradle plugin for OpenSesame, a tool for typesafe access to normally inacessible members

https://github.com/lukebemishprojects/OpenSesame

Sources: https://github.com/lukebemishprojects/OpenSesame.git

Version 0.5.4 (latest)

Created 07 April 2024.

Gradle plugin for OpenSesame, a tool for typesafe access to normally inacessible members

Using the plugins DSL:

plugins {
  id("dev.lukebemish.opensesame") version "0.5.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.lukebemish.opensesame:opensesame-plugin-core:0.5.4")
  }
}

apply(plugin = "dev.lukebemish.opensesame")

Using the plugins DSL:

plugins {
  id "dev.lukebemish.opensesame" version "0.5.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.lukebemish.opensesame:opensesame-plugin-core:0.5.4"
  }
}

apply plugin: "dev.lukebemish.opensesame"

Learn how to apply plugins to subprojects