Search Gradle plugins

Version 0.7.2

Created 15 December 2018.

Xeno's Defaults for a Kotlin Library

Using the plugins DSL:

plugins {
  id("com.xenoterracide.gradle.bundle.kotlin-lib-defaults") version "0.7.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.xenoterracide.gradle:gradle-plugin-bundle:0.7.2")
  }
}

apply(plugin = "com.xenoterracide.gradle.bundle.kotlin-lib-defaults")

Using the plugins DSL:

plugins {
  id "com.xenoterracide.gradle.bundle.kotlin-lib-defaults" version "0.7.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.xenoterracide.gradle:gradle-plugin-bundle:0.7.2"
  }
}

apply plugin: "com.xenoterracide.gradle.bundle.kotlin-lib-defaults"

Learn how to apply plugins to subprojects