com.withertech.architectury.kotlin.plugin
Owner: Aaron Koonce
Kotlin Expect/Actual support for Architectury projects
https://github.com/kernel-panic-codecave/Architectury-Kotlin
Sources: https://github.com/kernel-panic-codecave/Architectury-Kotlin
Version 1.0.0 (latest)
1.0.0
Created 30 May 2024.
Kotlin Expect/Actual support for Architectury projects
Using the plugins DSL:
plugins {
id("com.withertech.architectury.kotlin.plugin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.withertech.architectury.kotlin:plugin:1.0.0")
}
}
apply(plugin = "com.withertech.architectury.kotlin.plugin")
Using the plugins DSL:
plugins {
id "com.withertech.architectury.kotlin.plugin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.withertech.architectury.kotlin:plugin:1.0.0"
}
}
apply plugin: "com.withertech.architectury.kotlin.plugin"