Search Gradle plugins

Version 0.2.1 (latest)

Created 23 November 2022.

Gradle plugin for creating userscripts with Kotlin/JS

Using the plugins DSL:

plugins {
  id("net.ormr.userskripter.plugin") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.ormr.userskripter:userskripter-gradle:0.2.1")
  }
}

apply(plugin = "net.ormr.userskripter.plugin")

Using the plugins DSL:

plugins {
  id "net.ormr.userskripter.plugin" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.ormr.userskripter:userskripter-gradle:0.2.1"
  }
}

apply plugin: "net.ormr.userskripter.plugin"

Learn how to apply plugins to subprojects