Search Gradle plugins

Version 32.1.0 (latest)

Created 15 February 2020.

A plugin for godot-kotlin (Kotlin Native binding for Godot).

Using the plugins DSL:

plugins {
  id("com.github.raniejade.godot-kotlin") version "32.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0")
  }
}

apply(plugin = "com.github.raniejade.godot-kotlin")

Using the plugins DSL:

plugins {
  id "com.github.raniejade.godot-kotlin" version "32.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.raniejade:godot-kotlin-gradle-plugin:32.1.0"
  }
}

apply plugin: "com.github.raniejade.godot-kotlin"

Learn how to apply plugins to subprojects