ch.mollusca.glassfish.http.deployer
所有者: Silvio Heuberger
使用http和https管理控制台部署到glassfish。
https://github.com/kungfoo/http-glassfish-deployer
来源:https://github.com/kungfoo/http-glassfish-deployer
使用plugins DSL
plugins {
id("ch.mollusca.glassfish.http.deployer") version "0.3.0"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.ch.mollusca:plugin:0.3.0")
}
}
apply(plugin = "ch.mollusca.glassfish.http.deployer")
使用plugins DSL
plugins {
id "ch.mollusca.glassfish.http.deployer" version "0.3.0"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.ch.mollusca:plugin:0.3.0"
}
}
apply plugin: "ch.mollusca.glassfish.http.deployer"