Search Gradle plugins

Version 1.0.0-rc4 (latest)

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"

Learn how to apply plugins to subprojects