我一直在阅读Gradle docs,以了解有关Gradle如何管理Android项目中的依赖项的更多信息。
最后,我了解Java库插件决定了如何使用以下配置来构建和运行项目。
但是我试图使用android库作为翻新,下滑或okHttp来检查那些配置的差异,但我找不到一个。 例如,假设我想尝试OkHttp。
使用 API
api "com.squareup.okhttp3:okhttp:4.6.0"
使用实施
implementation "com.squareup.okhttp3:okhttp:4.6.0"
我看不到Project -> External Libraries -> com.squareup.okhttp3
或使用./gradlew app:androidDependencies
的任何区别
我不确定此配置是否仅在多模块项目中有用,因为它更容易检查差异(至少是api与实现)。
如果我深入研究OkHttp pom.xml
,我不知道使用哪种配置:api
,implementation
,compileOnly
,runtimeOnly
>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>parent</artifactId>
<version>3.14.7</version>
</parent>
<artifactId>okhttp</artifactId>
<name>OkHttp</name>
<dependencies>
<dependency>
<groupId>com.squareup.okio</groupId>
<artifactId>okio</artifactId>
</dependency>
<dependency>
<groupId>org.conscrypt</groupId>
<artifactId>conscrypt-openjdk-uber</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.robolectric</groupId>
<artifactId>android-all</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
<version>1.17</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>templating-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<goals>
<goal>filter-sources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<excludePackageNames>okhttp3.internal:okhttp3.internal.*</excludePackageNames>
<links>
<link>http://square.github.io/okio/</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>okhttp3</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
pom.xml
如何了解其配置依赖性?有人可以帮我吗?如果需要,我可以提供更多详细信息。或者我可以支付支持费用哈哈。
答案 0 :(得分:2)
您的gradle项目具有Okok依赖项。
Okhttp是一个Maven项目。
Gradle和maven都是构建工具,它们本质上是做同样的事情,pom.xml
是等效于build.gradle
文件的maven。
如果您从OKhttp查看pom.xml
,就会看到类似的依存关系:
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-annotations</artifactId>
<version>1.17</version>
<scope>provided</scope>
</dependency>
<scope>
是与gradle配置等效的专家(例如implementation
,api
,...)。
看看this以便进行比较:
maven - gradle
compile - compile
provided - compileOnly, testCompileOnly (only gradle)
system (maven only, local JAR)
runtime - runtime
test - testCompile, testRuntime
范围的官方文档可以在here中找到。
远程库是您刚刚导入到项目中的库。它被上传到jcenter或Maven Central之类的存储库中。
子模块是项目的一部分,也位于项目中。如果父项目是编译后,子模块也将被编译。
如果我忘记了任何内容,请随时发表评论。在这种情况下,我将尝试编辑答案。