【发布时间】:2018-10-28 02:29:19
【问题描述】:
我使用 gradle v4.2,这是我的 build.gradle。我需要应用脚本插件,该插件在我的 github url 中有一个非常简单的自定义任务。
apply plugin: 'java'
apply plugin: 'maven'
apply from: 'https://github.com/contactsai123/TestAssured/blob/master/custom.gradle'
但是我得到以下输出:
Download https://github.com/contactsai123/TestAssured/blob/master/custom.gradle
FAILURE: Build failed with an exception.
Where:
Script
'https://github.com/contactsai123/TestAssured/blob/master/custom.gradle'
line: 7
What went wrong:
Could not compile script
'https://github.com/contactsai123/TestAssured/blob/master/custom.gradle'.
> startup failed:
script
'https://github.com/contactsai123/TestAssured/blob/master/custom.gradle':
7: unexpected token: < @ line 7, column 1.
<!DOCTYPE html>
^
1 error
当我从本地目录引用时,相同的 custom.gradle 工作正常:
apply plugin: 'java'
apply plugin: 'maven'
apply from: 'custom.gradle'
【问题讨论】:
标签: gradle plugins build.gradle gradle-plugin