gpt4 book ai didi

gradle - 无法从HTTP URL应用Gradle脚本插件

转载 作者:行者123 更新时间:2023-12-03 03:58:50 25 4
gpt4 key购买 nike

我使用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'

最佳答案

那是因为您将其引用为网页而不是raw,但是尝试将其作为原始文件

https://raw.githubusercontent.com/contactsai123/TestAssured/master/custom.gradle

它应该按预期工作

关于gradle - 无法从HTTP URL应用Gradle脚本插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50397912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com