Search Gradle plugins

Version 0.3.0-SNAPSHOT-test

Created 23 September 2022.

Adds a JVM test common feature variant with a source set that depends on `main`.

Using the plugins DSL:

plugins {
  id("com.huanshankeji.jvm-test-common-feature-variant") version "0.3.0-SNAPSHOT-test"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.huanshankeji:kotlin-common-gradle-plugins:0.3.0-SNAPSHOT-test")
  }
}

apply(plugin = "com.huanshankeji.jvm-test-common-feature-variant")

Using the plugins DSL:

plugins {
  id "com.huanshankeji.jvm-test-common-feature-variant" version "0.3.0-SNAPSHOT-test"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.huanshankeji:kotlin-common-gradle-plugins:0.3.0-SNAPSHOT-test"
  }
}

apply plugin: "com.huanshankeji.jvm-test-common-feature-variant"

Learn how to apply plugins to subprojects