Search Gradle plugins

Version 1.9.10 (latest)

Created 16 October 2023.

Gradle plugin enable use of Kotlin's node/yarn infrastructure for building

Using the plugins DSL:

plugins {
  id("net.akehurst.kotlin.gradle.plugin.jsIntegration") version "1.9.10"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.akehurst.kotlin.gradle.plugin.jsIntegration" version "1.9.10"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.akehurst.kotlin.gradle.plugin:jsIntegration:1.9.10"
  }
}

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

Learn how to apply plugins to subprojects