com.shysteph.application-agent
所有者: Stephanie Miller
一个用于连接 Java 代理的 Gradle 插件。此插件将指定的代理附加到 `run`、`test` 和 `installDist` 作业。要使用它,请像这样将 `agent` 依赖项添加到您的依赖项中:`dependencies { agent("com.foo:bar:1.2.3") }`。
https://github.com/shysteph/application-agent-gradle-plugin
来源: https://github.com/shysteph/application-agent-gradle-plugin
版本 1.0.18 (最新)
1.0.18
创建于 2017 年 1 月 30 日。
一个用于连接 Java 代理的 Gradle 插件。此插件将指定的代理附加到 `run`、`test` 和 `installDist` 作业。要使用它,请像这样将 `agent` 依赖项添加到您的依赖项中:`dependencies { agent("com.foo:bar:1.2.3") }`。最初的实现归功于 MicahZoltu https://github.com/zoltu/application-agent-gradle-plugin。
使用 插件 DSL
plugins {
id("com.shysteph.application-agent") version "1.0.18"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.shysteph:application-agent:1.0.18")
}
}
apply(plugin = "com.shysteph.application-agent")