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)
1.0.0-rc4
Created 27 April 2019.
Gradle plugin to start an SA-MP server developed with Kamp
Using the plugins DSL:
plugins {
id("ch.leadrian.samp.kamp.kamp-server-starter") version "1.0.0-rc4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.leadrian.samp.kamp:kamp-server-starter:1.0.0-rc4")
}
}
apply(plugin = "ch.leadrian.samp.kamp.kamp-server-starter")
Using the plugins DSL:
plugins {
id "ch.leadrian.samp.kamp.kamp-server-starter" version "1.0.0-rc4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.leadrian.samp.kamp:kamp-server-starter:1.0.0-rc4"
}
}
apply plugin: "ch.leadrian.samp.kamp.kamp-server-starter"