ch.leadrian.samp.kamp.kamp-server-starter
Owner: Adrian-Philipp Leuenberger
Gradle plugin to start an SA-MP server developed with Kamp
https://github.com/Double-O-Seven/kamp-server-starter
Sources: https://github.com/Double-O-Seven/kamp-server-starter
Version 1.0.0-rc4 (latest)
Created 27 April 2019.
Gradle plugin to start an SA-MP server developed with Kamp
Add this plugin to your build using the plugins DSL:
plugins {
id("ch.leadrian.samp.kamp.kamp-server-starter") version "1.0.0-rc4"
}
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("ch.leadrian.samp.kamp.kamp-server-starter:ch.leadrian.samp.kamp.kamp-server-starter.gradle.plugin:1.0.0-rc4") }
It can then be applied in the precompiled script plugin:plugins { id("ch.leadrian.samp.kamp.kamp-server-starter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.leadrian.samp.kamp.kamp-server-starter:ch.leadrian.samp.kamp.kamp-server-starter.gradle.plugin:1.0.0-rc4") } } apply(plugin = "ch.leadrian.samp.kamp.kamp-server-starter")
- Applying plugins to all subprojects .