Search Gradle plugins

Version 0.0.7

Created 19 November 2021.

This setups the main variant for jdk11 and the jdk8 variant and brings source and test platform dependencies

Using the plugins DSL:

plugins {
  id("io.github.kotlin-graphics.base") version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.kotlin-graphics:base:0.0.7")
  }
}

apply(plugin = "io.github.kotlin-graphics.base")

Using the plugins DSL:

plugins {
  id "io.github.kotlin-graphics.base" version "0.0.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.kotlin-graphics:base:0.0.7"
  }
}

apply plugin: "io.github.kotlin-graphics.base"

Learn how to apply plugins to subprojects