最佳答案
在几个任务中,我在主文件夹中引用罐子。
获取环境变量的方法是否比
ENV = System.getenv()
HOME = ENV['HOME']
task copyToServer(dependsOn: 'jar', type: Copy) {
from 'build/libs/'
into HOME + "/something/plugins/"
}
这设置了 $HOME,但是我希望我错过了文档中的一些魔法。