Search Gradle plugins

Version 0.2.0 (latest)

Created 23 October 2023.

Automatically setup of godot kotlin jvm specific project configurations

Using the plugins DSL:

plugins {
  id("com.utopia-rise.kotlin-preprocessors") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.utopia-rise:kotlin-preprocessors:0.2.0")
  }
}

apply(plugin = "com.utopia-rise.kotlin-preprocessors")

Using the plugins DSL:

plugins {
  id "com.utopia-rise.kotlin-preprocessors" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.utopia-rise:kotlin-preprocessors:0.2.0"
  }
}

apply plugin: "com.utopia-rise.kotlin-preprocessors"

Learn how to apply plugins to subprojects