info.beeker.gradle.plugins.httpServer
Owner:
Benjamin Beeker
Adds support to simply start a http server for local files
https://gitlab.com/beeker.info/gradle-plugins/http-server
Sources: https://gitlab.com/beeker.info/gradle-plugins/http-server.git
Version 1.0.5 (latest)
Created 08 April 2025.
Adds support to simply start a http server for local files
Add this plugin to your build using the plugins DSL:
plugins {
id("info.beeker.gradle.plugins.httpServer") version "1.0.5"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("info.beeker.gradle.plugins.httpServer:info.beeker.gradle.plugins.httpServer.gradle.plugin:1.0.5") }
It can then be applied in the precompiled script plugin:plugins { id("info.beeker.gradle.plugins.httpServer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.beeker.gradle.plugins.httpServer:info.beeker.gradle.plugins.httpServer.gradle.plugin:1.0.5") } } apply(plugin = "info.beeker.gradle.plugins.httpServer")
- Applying plugins to all subprojects .