Search Gradle plugins

com.github.hauner.jarTest

create a jar from the test source set. See https://github.com/hauner/gradle-plugins/tree/master/jartest for usage information.

https://github.com/hauner/gradle-plugins

Sources: https://github.com/hauner/gradle-plugins/tree/master/jartest

Version 1.1.0 (latest)

Created 28 May 2023.

create a jar from the test source set. See https://github.com/hauner/gradle-plugins/tree/master/jartest for usage information.

Using the plugins DSL:

plugins {
  id("com.github.hauner.jarTest") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.hauner:jartest:1.1.0")
  }
}

apply(plugin = "com.github.hauner.jarTest")

Using the plugins DSL:

plugins {
  id "com.github.hauner.jarTest" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.hauner:jartest:1.1.0"
  }
}

apply plugin: "com.github.hauner.jarTest"

Learn how to apply plugins to subprojects