1

私はgradleユーザーガイドの78ページにいます:例14.5。スクリプトを使用して任意のオブジェクトを構成します。

例のすべてのコードをコピーしました。

build.gradle

task configure << { 
    pos = java.text.FieldPosition( ) new 10 
    // Apply the script 
    apply from: 'other.gradle', to: pos 
    println pos.beginIndex 
    println pos.endIndex 
}

other.gradle

beginIndex = 1; 
endIndex = 5;

gradle -q configure の出力

D:\Gradle\ThisAndThat>gradle -q configure

FAILURE: Build failed with an exception.

Where: Build file 'D:\Gradle\ThisAndThat\build.gradle' line: 1

What went wrong: Could not compile build file 'D:\Gradle\ThisAndThat\build.gradle'. 
> startup failed: 
    build file 'D:\Gradle\ThisAndThat\build.gradle': 1: expecting EOF, found 'configure' @ line 1, column 6. 
    task configure << { ^ 
1 error

なぜこのエラーが発生するのかわかりません。どんな助けでも大歓迎です。ありがとう!

4

1 に答える 1