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
Version 1.6.21 (latest)
Created 26 April 2022.
Kotlin compiler plugin to 'JsExport' all public declarations
Using the plugins DSL:
plugins {
id("net.akehurst.kotlin.gradle.plugin.exportPublic") version "1.6.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.akehurst.kotlin.gradle.plugin:exportPublic:1.6.21")
}
}
apply(plugin = "net.akehurst.kotlin.gradle.plugin.exportPublic")
Using the plugins DSL:
plugins {
id "net.akehurst.kotlin.gradle.plugin.exportPublic" version "1.6.21"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.akehurst.kotlin.gradle.plugin:exportPublic:1.6.21"
}
}
apply plugin: "net.akehurst.kotlin.gradle.plugin.exportPublic"