net.akehurst.kotlin.gradle.plugin.exportPublic
Owner:
D Akehurst
gradle kotlin compiler plugin to 'JsExport' all public declarations
https://github.com/dhakehurst/kotlin.gradle.plugin.exportPublic
Sources: https://github.com/dhakehurst/kotlin.gradle.plugin.exportPublic
Version 1.9.0 (latest)
Created 04 August 2023.
Kotlin compiler plugin to 'JsExport' all public declarations
Using the plugins DSL:
plugins {
id("net.akehurst.kotlin.gradle.plugin.exportPublic") version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.akehurst.kotlin.gradle.plugin:exportPublic:1.9.0")
}
}
apply(plugin = "net.akehurst.kotlin.gradle.plugin.exportPublic")
Using the plugins DSL:
plugins {
id "net.akehurst.kotlin.gradle.plugin.exportPublic" version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.akehurst.kotlin.gradle.plugin:exportPublic:1.9.0"
}
}
apply plugin: "net.akehurst.kotlin.gradle.plugin.exportPublic"