搜索Gradle插件

com.github.hauner.jarTest

所有者: Martin Hauner

从测试源集创建jar。有关使用信息,请参阅https://github.com/hauner/gradle-plugins/tree/master/jartest。

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

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

版本1.1.0(最新版本)

1.1.0

创建于2023年5月28日。

从测试源集创建jar。有关使用信息,请参阅https://github.com/hauner/gradle-plugins/tree/master/jartest。

使用plugins DSL

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

使用旧插件应用

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

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

使用plugins DSL

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

使用旧插件应用

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

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

了解如何将插件应用于子项目