Search Gradle plugins

Version 2.0.20-rc2 (latest)

2.0.20-rc2

Created 10 October 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-rc2"
}

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-rc2")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects