溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

發(fā)布時(shí)間:2021-11-01 10:25:23 來源:億速云 閱讀:349 作者:iii 欄目:編程語言

本篇內(nèi)容主要講解“build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么”吧!

build.gradle里的dependencies標(biāo)簽頁:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

如果把dependencies改成dependencies2, gradle build的輸出會遇到錯誤消息:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

A problem occurred evaluating root project 'quickstart'.

Could not find method dependencies2() for arguments [build_a2307i03s3k13jdug3afl2lin$_run_closure3@21c69f73] on root project 'quickstart' of type org.gradle.api.Project.

找到這個org.gradle.api.Project類,位于目錄org\gradle\api下面:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

打開Project.java, 查看關(guān)于dependencies的說明:

A project generally has a number of dependencies it needs in order to do its work. Also, a project generally * produces a number of artifacts, which other projects can use. Those dependencies are grouped in configurations, and * can be retrieved and uploaded from repositories. You use the {@link org.gradle.api.artifacts.ConfigurationContainer} * returned by {@link #getConfigurations()} method to manage the configurations. The {@link * org.gradle.api.artifacts.dsl.DependencyHandler} returned by {@link #getDependencies()} method to manage the * dependencies. The {@link org.gradle.api.artifacts.dsl.ArtifactHandler} returned by {@link #getArtifacts()} method to * manage the artifacts. The {@link org.gradle.api.artifacts.dsl.RepositoryHandler} returned by {@link * #getRepositories()} method to manage the repositories.

Project是一個接口:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

里面定義了dependencies這個方法:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

這個方法的實(shí)現(xiàn)在哪里呢?

將dependencies標(biāo)簽頁里的implementation標(biāo)簽隨便換個名字:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

gradle build出錯:

A problem occurred evaluating root project 'quickstart'. Could not find method implementation2() for arguments [{group=commons-collections, name=commons-collections, version=3.2.2}] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

說明Implementation標(biāo)簽頁的實(shí)現(xiàn)就位于org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler類里.

group改成group2:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

build出錯:

A problem occurred evaluating root project 'quickstart'. Could not set unknown property 'group2' for DefaultExternalModuleDependency{group='null', name='commons-collections', version='3.2.2', configuration='default'} of type org.gradle.api.internal.artifacts.dependencies.DefaultExternalModuleDependency.

所以build.gradle文件dependencies里的標(biāo)簽對應(yīng)了DefaultExternalModuleDependency類的實(shí)例. 前者dependencies屬性group, name和version對應(yīng)了DefaultExternalModuleDependency類的成員:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

再把dependenies里的group屬性值稍作修改,改成一個并不存在的庫文件名:

build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么

gradle build報(bào)錯:

Could not resolve all files for configuration ':compileClasspath'. Could not find commons-collections-:commons-collections:3.2.2. Searched in the following locations: - https://aven2/commons-collections-/commons-collections/3.2.2/commons-collections-3.2.2.pomhttps://aven2/commons-collections-/commons-collections/3.2.2/commons-collections-3.2.2.pomhttps://aven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom


build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么


到此,相信大家對“build.gradle里dependencies標(biāo)簽頁的實(shí)現(xiàn)原理是什么”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI