Groovy 2.1.4 を新しくインストールしましたが、HTTP ビルダーを使用するスクリプトを作成したいと考えています。
スクリプトの先頭に次の行を追加しました。
@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.6')
GroovyConsole でスクリプトを実行すると、次のエラーが発生します。
1 compilation error:
Exception thrown
VI 01, 2013 12:15:39 ODP. org.codehaus.groovy.runtime.StackTraceUtils sanitize
WARNING: Sanitizing stacktrace:
java.lang.RuntimeException: Error grabbing Grapes -- [download failed: commons-logging#commons-logging;1.1.1!commons-logging.jar]
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
... (aso) ...
java.lang.RuntimeException: Error grabbing Grapes -- [download failed: commons-logging#commons-logging;1.1.1!commons-logging.jar]
Windows コマンド ラインで次のコマンドを実行すると、次のようになります。
grape -V resolve org.codehaus.groovy.modules.http-builder http-builder 0.6
同じエラーが発生します。つまり、次のようになります。
:: problems summary ::
:::: WARNINGS
[NOT FOUND ] commons-logging#commons-logging;1.1.1!commons-logging.jar (0ms)
==== localm2: tried
file:C:\Documents and Settings\Administrator/.m2/repository/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar
:: USE VERBOSE OR DEBUG MESSAGE LEVEL FOR MORE DETAILS
Error in resolve:
Error grabbing Grapes -- [download failed: commons-logging#commons-logging;1.1.1!commons-logging.jar]
次のコマンドを使用して、commons-logging を直接解決しようとすると:
grape -V resolve commons-logging commons-logging 1.1.1
同じエラーが発生しますnot found
。
代わりに、適切なコマンドを使用して最新バージョン、つまり 1.1.3 をダウンロードしようとすると、機能します。しかし、その後でも http-client の解決は失敗します。
問題はどこですか?