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.0.1

Created 05 December 2015.

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.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.gradle-plugins:jartest:1.0.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.gradle-plugins:jartest:1.0.1"
  }
}

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

Learn how to apply plugins to subprojects