Gradle教程-依赖管理基础

来源:互联网 发布:淘宝网耐克正品店 编辑:程序博客网 时间:2024/05/17 11:37

原文

This chapter introduces some of the basics of dependency management in Gradle.
<翻译>本章将会介绍一些有关Gradle依赖管理的基础知识。

8.1. What is dependency management? 什么是依赖管理?
Very roughly, dependency management is made up of two pieces. Firstly, Gradle needs to know about the things that your project needs to build or run, in order to find them. We call these incoming files the dependencies of the project. Secondly, Gradle needs to build and upload the things that your project produces. We call these outgoing files the publications of the project. Let’s look at these two pieces in more detail:
<翻译>大概来说,依赖管理由两方面构成。一方面,Gradle需要知道在构建您的项目时所需要构建或者运行的东西以便Gradle找到它们,我们将这些被导入的文件称作项目的依赖。另一方面,Gradle需要需要构建或者上传您的项目产出的东西,我们将这些由您的项目产出的文件称作项目的出版物。接下来让我们更详细的看看这两方面内容:

Most projects are not completely self-contained. They need files built by other projects in order to be compiled or tested and so on. For example, in order to use Hibernate in my project, I need to include some Hibernate jars in the classpath when I compile my source. To run my tests, I might also need to include some additional jars in the test classpath, such as a particular JDBC driver or the Ehcache jars.
<翻译>大部分项目并不是依靠项目本身独立完成的。它们需要加入其他项目构建的文件以便进行编译或测试等等。举个例子,为了在我的项目中使用Hibernate,在编译我的源码时我需要在classpath中引入一些Hibernate的jar文件。为了运行我的测试项目,我可能也需要在测试项目的classpath中引入一些额外的jar文件,例如一个特别的JDBC驱动包或者Ehcache框架包。

These incoming files form the dependencies of the project. Gradle allows you to tell it what the dependencies of your project are, so that it can take care of finding these dependencies, and making them available in your build. The dependencies might need to be downloaded from a remote Maven or Ivy repository, or located in a local directory, or may need to be built by another project in the same multi-project build. We call this process dependency resolution.
<翻译>对于这些由项目依赖导入的文件,Gradle允许您告诉它您的项目都依赖了那些文件以便Gradle能够负责找到这些依赖文件,然后让这些文件在您的构建项目中可用。这些依赖文件可能需要从远程的Maven或者Ivy仓库下载,或者存在于本地目录中,或者在一些多项目构建中由其他项目构建而来。我们将这个过程称作<依赖解析>。

Note that this feature provides a major advantage over Ant. With Ant, you only have the ability to specify absolute or relative paths to specific jars to load. With Gradle, you simply declare the “names” of your dependencies, and other layers determine where to get those dependencies from. You can get similar behavior from Ant by adding Apache Ivy, but Gradle does it better.
<翻译>值得注意的是该特性(依赖解析)是Gradle相对于Ant最主要的优势。通过Ant,您只能使用绝对或相对路径来定义要加载的jar文件。而通过Gradle,您只需要简单的声明依赖文件的名称以及其他层次结构就可以确定从哪里获取这些依赖文件。当然您也可以通过添加Apache Ivy来获取类似Ant的行为操作,但是Gradle能做得更好。

Often, the dependencies of a project will themselves have dependencies. For example, Hibernate core requires several other libraries to be present on the classpath with it runs. So, when Gradle runs the tests for your project, it also needs to find these dependencies and make them available. We call these transitive dependencies.
<翻译>很多情况下,项目的依赖文件也会有它们自己的依赖文件。举个例子,Hibernate核心的运行需要在classpath中声明几个其他库文件。因此,当Gradle构建您的项目时,也需要找到这些被依赖文件所依赖的文件以确保它们可用。我们将这种情况称作<可传递性的依赖>。

The main purpose of most projects is to build some files that are to be used outside the project. For example, if your project produces a Java library, you need to build a jar, and maybe a source jar and some documentation, and publish them somewhere.
<翻译>大多数项目的主要目的都是构建出一个可以在项目之外运行的可执行文件。举例来说,如果你的项目能够产出一个Java库文件,那么你需要构建出一个jar文件,或者有可能是一个jar文件外加一些文档,并且在某个地方将他们发布。

These outgoing files form the publications of the project. Gradle also takes care of this important work for you. You declare the publications of your project, and Gradle take care of building them and publishing them somewhere. Exactly what “publishing” means depends on what you want to do. You might want to copy the files to a local directory, or upload them to a remote Maven or Ivy repository. Or you might use the files in another project in the same multi-project build. We call this process publication.
<翻译>对于这些包含在您的项目最终产物里的文件。Gradle也负责帮您处理这项重要工作。您只需要声明项目的产物,然后Gradle将会负责构建它们并且在某些地方发布他们。至于具体发布哪些内容完全取决于您个人。您可能想要把这些文件拷贝到本地目录下,或者将它们上传到远程的Maven或者Ivy仓库里。或者在一些多项目构建活动中您可能希望某一个项目使用其他项目的产物。我们将这个过程称作<发布>。

8.2. Declaring your dependencies 声明你自己的依赖
Let’s look at some dependency declarations. Here’s a basic build script:
<翻译>让我来看看一些依赖关系的声明。这里有一个基础的构建脚本:

Example 8.1. Declaring dependencies 示例 8.1. 声明依赖

build.gradle

apply plugin: 'java'repositories {    mavenCentral()}

dependencies {
compile group: ‘org.hibernate’, name: ‘hibernate-core’, version: ‘3.6.7.Final’
testCompile group: ‘junit’, name: ‘junit’, version: ‘4.+’
}

What’s going on here? This build script says a few things about the project. Firstly, it states that Hibernate core 3.6.7.Final is required to compile the project’s production source. By implication, Hibernate core and its dependencies are also required at runtime. The build script also states that any junit >= 4.0 is required to compile the project’s tests. It also tells Gradle to look in the Maven central repository for any dependencies that are required. The following sections go into the details.
<翻译>在上面的脚本中都发生了些什么?这个构建脚本描述了关于项目的少许内容。首先,它规定了编译项目时需要的Hibernate核心版本为 3.6.7.Final。同时这也暗示着在运行项目时,Hibernate核心所依赖的其他文件也会被包含进来。构建脚本也规定了在编译测试项目时所需要的junit版本必须大于等于4.0。它还告诉Gradle从Maven central仓库中搜索任何需要的依赖文件。在接下来的部分里将会有更详细的描述。

8.3. Dependency configurations 依赖配置项
In Gradle dependencies are grouped into configurations. A configuration is simply a named set of dependencies. We will refer to them as dependency configurations. You can use them to declare the external dependencies of your project. As we will see later, they are also used to declare the publications of your project.
<翻译>在Gradle中,依赖被组织到不同的配置项。每一个配置项中有一组的依赖,这些配置项被称作<依赖配置项>。你可以用这些配置项声明项目的外部依赖,这一点再之后我们就会看到。依赖配置项也可以用来声明项目的产物。

The Java plugin defines a number of standard configurations. These configurations represent the classpaths that the Java plugin uses. Some are listed below, and you can find more details in Table 23.5, “Java plugin - dependency configurations”.
<翻译>Java插件定义了许多标准的依赖配置项。这些配置项代表了Java插件需要用到的classpath。其中一些配置项已经在下面列出,你可以在目录 23.5,“Java插件 - 依赖配置项”找到更多详细内容。

compile 编译
The dependencies required to compile the production source of the project.
<翻译>在编译项目源代码时会使用到compile配置项中的依赖。

runtime 运行时
The dependencies required by the production classes at runtime. By default, also includes the compile time dependencies.
<翻译>在运行项目时会用到runtime配置项中的依赖。默认情况下,也会包含编译代码时候的依赖。

testCompile 测试编译
The dependencies required to compile the test source of the project. By default, also includes the compiled production classes and the compile time dependencies.
<翻译>在编译测试代码时会用到testCompile配置项中的依赖。默认情况下,也会包含编译和运行正式代码的依赖。

testRuntime 测试运行时
The dependencies required to run the tests. By default, also includes the compile, runtime and test compile dependencies.
<翻译>在运行测试代码时会用到testRuntime配置项中的依赖。默认情况下,也会包含编译、运行正式代码以及编译测试代码的依赖。

Various plugins add further standard configurations. You can also define your own custom configurations to use in your build. Please see Section 51.3, “Dependency configurations” for the details of defining and customizing dependency configurations.
<翻译>不同插件将会添加更多标准的配置项。你也可以在构建项目时定义你自己定制的配置项。请查阅章节 51.3,“依赖配置项”来获取有关定义和定制依赖配置项的详细内容。

8.4. External dependencies 外部依赖
There are various types of dependencies that you can declare. One such type is an external dependency. This a dependency on some files built outside the current build, and stored in a repository of some kind, such as Maven central, or a corporate Maven or Ivy repository, or a directory in the local file system.
<翻译>Gradle中有多种不同类型的依赖可以供你声明。其中一种就是外部依赖。这是一种依赖于不在当前构建项目中的文件的依赖,并且这些文件被存储在某种类型的仓库中,比如Maven central,或者一个Maven或Ivy仓库的组合,或者一个本地文件系统的目录中。

To define an external dependency, you add it to a dependency configuration:
<翻译>要定义一个外部依赖,你需要将它添加到一个依赖配置项中。

Example 8.2. Definition of an external dependency 示例 8.2. 一个外部依赖的定义

build.gradle

dependencies {    compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.7.Final'}

An external dependency is identified using group, name and version attributes. Depending on which kind of repository you are using, group and version may be optional.
<翻译>一个外部依赖由group,name和version三个属性构成。是否使用group,name和version这三个属性完全取决于你使用的是何种类型的仓库。

The shortcut form for declaring external dependencies looks like “group:name:version”.
<翻译>你可以使用快捷方式声明外部依赖,就像这样“group:name:version”。

Example 8.3. Shortcut definition of an external dependency 一个外部依赖的快捷定义方式

build.gradle

dependencies {    compile 'org.hibernate:hibernate-core:3.6.7.Final'}

To find out more about defining and working with dependencies, have a look at Section 51.4, “How to declare your dependencies”.
<翻译>想要了解更多有关定义和使用依赖的内容,你可以查阅章节 51.4,“如何声明你的依赖”。

8.5. Repositories 仓库
How does Gradle find the files for external dependencies? Gradle looks for them in a repository. A repository is really just a collection of files, organized by group, name and version. Gradle understands several different repository formats, such as Maven and Ivy, and several different ways of accessing the repository, such as using the local file system or HTTP.
<翻译>Gradle使如何找到外部依赖的文件呢?答案是Gradle在仓库里找到这些文件。一个仓库就是一些文件的集合,这些文件通过group,name和version三个属性组织在一起。Gradle知道好几种不同的仓库形式,比如Maven和Ivy,并且它知道好几种使用这些仓库的方式,比如使用本地文件系统或者HTTP协议。

By default, Gradle does not define any repositories. You need to define at least one before you can use external dependencies. One option is use the Maven central repository:
<翻译>默认情况下,Gradle并没有定义任何的仓库。在使用外部依赖之前你需要至少定义一个仓库。Maven central仓库是一个选择:

Example 8.4. Usage of Maven central repository 示例 8.4. Maven central仓库的用法

build.gradle

repositories {    mavenCentral()}

Or a remote Maven repository:
<翻译>或者一个远程Maven仓库:

Example 8.5. Usage of a remote Maven repository 示例 8.5. 远程Maven仓库的用法

build.gradle

repositories {    maven {        url "http://repo.mycompany.com/maven2"    }}

Or a remote Ivy repository:
<翻译>或者一个远程Ivy仓库:

Example 8.6. Usage of a remote Ivy directory 示例 8.6. 远程Ivy目录的用法

build.gradle

repositories {    ivy {        url "http://repo.mycompany.com/repo"    }}

You can also have repositories on the local file system. This works for both Maven and Ivy repositories.
<翻译>你也可以使用存在于本地文件系统中的仓库。这种方式对Maven和Ivy都是有效的。

Example 8.7. Usage of a local Ivy directory 示例 8.7. 本地Ivy目录的用法

build.gradle

repositories {    ivy {        // URL can refer to a local directory        url "../local-repo"    }}

A project can have multiple repositories. Gradle will look for a dependency in each repository in the order they are specified, stopping at the first repository that contains the requested module.
<翻译>一个项目可以有多个仓库。Gradle将会根据仓库的声明顺序逐个检索每一个仓库,当发现需要的模块之后就停止检索。

To find out more about defining and working with repositories, have a look at Section 51.6, “Repositories”.
<翻译>想要了解更多有关定义和使用仓库的内容,查阅章节 51.6, “仓库”。

8.6. Publishing artifacts 发布artifacts(这个词没法准确翻译http://en.wikipedia.org/wiki/Artifact)
Dependency configurations are also used to publish files.We call these files publication artifacts, or usually just artifacts.
<翻译>依赖配置项也用来发布文件。我们将这些文件称作

uploadArchives {    repositories {        ivy {            credentials {                username "username"                password "pw"            }            url "http://repo.mycompany.com"        }    }}

Now, when you run gradle uploadArchives, Gradle will build and upload your Jar. Gradle will also generate and upload an ivy.xml as well.
<翻译>当你运行gradle uploadArchives命令时,Gradle将会构建和上传你的jar文件。同时Gradle也会生成并上传一个ivy.xml配置文件。

You can also publish to Maven repositories. The syntax is slightly different.Note that you also need to apply the Maven plugin in order to publish to a Maven repository. when this is in place, Gradle will generate and upload a pom.xml.
<翻译>你也可以发布artifacts到Maven仓库。在语法上面将会稍有不同。需要注意的是你同样需要定义Maven插件以便发布artifacts到一个Maven仓库。当一切准备就绪后,Gradle会生成并上传pom.xml配置文件。

Example 8.9. Publishing to a Maven repository 示例 8.9. 发布artifacts到一个Maven仓库

build.gradle

apply plugin: 'maven'uploadArchives {    repositories {        mavenDeployer {            repository(url: "file://localhost/tmp/myRepo/")        }    }}

To find out more about publication, have a look at Chapter 52, Publishing artifacts.
<翻译>想要了解更多有关发布的内容,查阅52章,发布artifacts。

8.7. Where to next? 接下来要去哪?
For all the details of dependency resolution, see Chapter 51, Dependency Management, and for artifact publication see Chapter 52, Publishing artifacts.
<翻译>想要更详细地学习<依赖解析>,请查阅51章,依赖解析,想要了解artifacts的发布就查阅52章,发布artifacts。

If you are interested in the DSL elements mentioned here, have a look at Project.configurations{}, Project.repositories{} and Project.dependencies{}.
<翻译>如果你对本章提到的一些DSL(领域专用语言)元素感兴趣,请查阅Project.configurations{},Project.repositories{}和Project.dependencies{}。

Otherwise, continue on to some of the other tutorials.
<翻译>否则的话,就继续阅读其他教程。

原文地址:http://www.gradle.org/docs/cur … .html
翻译者:Jerry
邮箱:hjpdyxhjd@163.com

如对翻译内容有异议,请在评论区提出或联系作者

0 0