Build tooling and Gradle plugin for Elide
Elide Plugin for Gradle
Elide is under construction.
-based apps with additional build tooling and tasks.
In particular, this plugin is responsible for configuring and running esbuild
and
webpack
on behalf of the developer.
Installing the plugin
It’s a standard Gradle plugin, so you should be able to check the latest version at the Gradle Plugins Portal. See below for specific installation instructions.
From a single-module Gradle project
Kotlin DSL
plugins {
id("dev.elide.buildtools.plugin") version "(latest version here)"
}
Groovy DSL
plugins {
id "dev.elide.buildtools.plugin" version "(latest version here)"
}
From a multi-module Gradle project
Kotlin DSL (via buildSrc
)
repositories {
gradlePluginPortal()
}
dependencies {
implementation("dev.elide.buildtools:elide-gradle-plugin:(latest version here)")
}
Groovy DSL (via buildSrc
)
repositories {
gradlePluginPortal()
}
dependencies {
implementation "dev.elide.buildtools:elide-gradle-plugin:(latest version here)"
}
Kotlin DSL (via root build.gradle.kts
)
dependencies {
classpath("dev.elide.buildtools:elide-gradle-plugin:(latest version here)")
}
Groovy DSL (via root build.gradle
)
dependencies {
classpath "dev.elide.buildtools:elide-gradle-plugin:(latest version here)"
}
Using the plugin
Once you’ve installed the plugin (see above), you can configure your build with:
Kotlin DSL (module build.gradle.kts
)
elide {
/* docs coming soon */
}
Groovy DSL (module build.gradle
)
elide {
/* docs coming soon */
}