Search Gradle plugins

Version 2.0.20-rc1

2.0.20-rc1

Created 24 September 2024.

Kotlin compiler plugin to 'JsExport' all public declarations

Using the plugins DSL:

plugins {
  id("net.akehurst.kotlin.gradle.plugin.exportPublic") version "2.0.20-rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.akehurst.kotlin.gradle.plugin:exportPublic:2.0.20-rc1")
  }
}

apply(plugin = "net.akehurst.kotlin.gradle.plugin.exportPublic")

Using the plugins DSL:

plugins {
  id "net.akehurst.kotlin.gradle.plugin.exportPublic" version "2.0.20-rc1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.akehurst.kotlin.gradle.plugin:exportPublic:2.0.20-rc1"
  }
}

apply plugin: "net.akehurst.kotlin.gradle.plugin.exportPublic"

Learn how to apply plugins to subprojects