Gradle
次のことを伝える最も簡単な方法は何でしょうか。
「junit」依存関係を取得し、最新の「リリース」バージョンを取得します。
MavenおよびIvyリポジトリーの管理は、私にとっては初めてのことです。次の手順を実行したところ、Could not resolve dependency ...
エラーが発生しました。
compile "junit:junit:latest.release"
リポジトリーのみを設定して書き込みます(ただし、「junit:junit:4.10」と言っても機能しますmavenCentral()
)。compile "junit:junit:latest.release"
リポジトリセットを使用して次のように記述します。ivy { // I also tried 'http://maven.org' and other possible variants. url "http://repo1.maven.org" layout "maven" }
Spring Source Ivyリポジトリを使用しようとしました:
ivy { artifactPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" ivyPattern "http://repository.springsource.com/ivy/libraries/release/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" }
多分私は何かを誤解しています。依存関係の最新バージョンを取得するのがそれほど難しい作業になるのはなぜですか?
latest.integration
。動的バージョンの