EclipseClasspath

为生成的 Eclipse 项目构建路径设置。由 GenerateEclipseClasspath task 用于生成 Eclipse .classpath 文件。

以下示例演示了各种配置选项。请记住,所有属性都有合理的默认值;只有当默认值不符合您的需求时才显式配置它们。

plugins {
    id 'java'
    id 'eclipse'
}

configurations {
  provided
  someBoringConfig
}

eclipse {
  //if you want parts of paths in resulting file to be replaced by variables (files):
  pathVariables 'GRADLE_HOME': file('/best/software/gradle'), 'TOMCAT_HOME': file('../tomcat')

  classpath {
    //you can tweak the classpath of the Eclipse project by adding extra configurations:
    plusConfigurations += [ configurations.provided ]

    //you can also remove configurations from the classpath:
    minusConfigurations += [ configurations.someBoringConfig ]

    //if you want to append extra containers:
    containers 'someFriendlyContainer', 'andYetAnotherContainer'

    //customizing the classes output directory:
    defaultOutputDir = file('build-eclipse')

    //default settings for downloading sources and Javadoc:
    downloadSources = true
    downloadJavadoc = false

    //if you want to expose test classes to dependent projects
    containsTestFixtures = true

    //customizing which Eclipse source directories should be marked as test
    testSourceSets = [sourceSets.test]

    //customizing which dependencies should be marked as test on the project's classpath
    testConfigurations = [configurations.testCompileClasspath, configurations.testRuntimeClasspath]
  }
}

为了解决边缘情况,用户可以对生成的 XML 文件执行高级配置。也可以通过 beforeMerged 和 whenMerged 闭包来影响 Eclipse 插件合并现有配置的方式。

beforeMerged 和 whenMerged 闭包接收一个 Classpath 对象。

高级配置示例

plugins {
    id 'java'
    id 'eclipse'
}

eclipse {
  classpath {
    file {
      //if you want to mess with the resulting XML in whatever way you fancy
      withXml {
        def node = it.asNode()
        node.appendNode('xml', 'is what I love')
      }

      //closure executed after .classpath content is loaded from existing file
      //but before gradle build information is merged
      beforeMerged { classpath ->
        //you can tinker with the Classpath here
      }

      //closure executed after .classpath content is loaded from existing file
      //and after gradle build information is merged
      whenMerged { classpath ->
        //you can tinker with the Classpath here
      }
    }
  }
}

属性

属性描述
containers

要添加的 classpath 容器。

defaultOutputDir

Eclipse 放置编译类的默认输出目录。

downloadJavadoc

是否下载并关联 Javadoc Jar 和依赖 Jar。默认为 false。

downloadSources

是否下载并关联源 Jar 和依赖 Jar。默认为 true。

file

请参阅 EclipseClasspath.file(org.gradle.api.Action)

minusConfigurations

要从 classpath 条目中排除文件的配置。

plusConfigurations

要作为 classpath 条目添加文件的配置。

方法

方法描述
containers(containers)

要添加的更多 classpath 容器。

file(action)

启用高级配置,例如修改输出 XML 或影响现有 .classpath 文件的内容与 Gradle 构建信息合并的方式。传递给 whenMerged{} 和 beforeMerged{} 闭包的对象类型为 Classpath

脚本块

描述
file

启用高级配置,例如修改输出 XML 或影响现有 .classpath 文件的内容与 Gradle 构建信息合并的方式。传递给 whenMerged{} 和 beforeMerged{} 闭包的对象类型为 Classpath

属性详情

Set<String> containers

要添加的 classpath 容器。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
[JRE 容器]

File defaultOutputDir

Eclipse 放置编译类的默认输出目录。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
${project.projectDir}/bin/default

boolean downloadJavadoc

是否下载并关联 Javadoc Jar 和依赖 Jar。默认为 false。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
false

boolean downloadSources

是否下载并关联源 Jar 和依赖 Jar。默认为 true。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
true

Collection<Configuration> minusConfigurations

要从 classpath 条目中排除文件的配置。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
[]

Collection<Configuration> plusConfigurations

要作为 classpath 条目添加文件的配置。

有关示例,请参阅 EclipseClasspath

使用 eclipsejava 插件的默认值
project.configurations.testRuntime

方法详情

void containers(String... containers)

要添加的更多 classpath 容器。

有关示例,请参阅 EclipseClasspath

void file(Action<? super XmlFileContentMerger> action)

启用高级配置,例如修改输出 XML 或影响现有 .classpath 文件的内容与 Gradle 构建信息合并的方式。传递给 whenMerged{} 和 beforeMerged{} 闭包的对象类型为 Classpath

有关示例,请参阅 EclipseProject

脚本块详情

file { }

启用高级配置,例如修改输出 XML 或影响现有 .classpath 文件的内容与 Gradle 构建信息合并的方式。传递给 whenMerged{} 和 beforeMerged{} 闭包的对象类型为 Classpath

有关示例,请参阅 EclipseProject

委派到
XmlFileContentMerger 来自 file