安装Gradle Eclipse插件后,Gradle构建文件夹未显示

时间:2015-09-04 17:05:32

标签: java eclipse gradle

我有一个项目,我使用gradle来构建。在我安装Gradle Eclipse插件之前,我能够在Eclipse中看到gradle build文件夹。但在安装插件(Buildship)并创建和构建新的Gradle项目后,我无法再在Project Explorer或Package Explorer或Navigator中看到build文件夹。我能够从Windows资源管理器中看到build文件夹和jar文件。我试图从自定义视图...更改设置,但它没有解决问题。有人可以让我知道如何让build文件夹出现吗?感谢。

这是build.gradle:

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = 'com.ii.mainClass'

repositories {
    mavenCentral()
 }

 sourceCompatibility = 1.7
 targetCompatibility = 1.7

 dependencies {
      compile 'com.fasterxml.jackson.core:jackson-annotations:2.6.1'
      compile 'com.fasterxml.jackson.core:jackson-core:2.6.1'
      compile 'com.fasterxml.jackson.core:jackson-databind:2.6.1'
      compile 'org.springframework:spring-beans:4.2.0.RELEASE'
      compile 'org.springframework:spring-context:4.2.0.RELEASE'
      compile 'org.springframework:spring-core:4.2.0.RELEASE'
      compile 'org.springframework:spring-expression:4.2.0.RELEASE'
      compile 'org.springframework.xd:spring-xd-tuple:1.0.4.RELEASE'
   }

3 个答案:

答案 0 :(得分:6)

我在Gradle论坛(https://discuss.gradle.org/t/setting-eclipse-native-library-location/11075/2)的主题中找到了解决方案。

插件会安装带有排除模式的资源过滤器,您可以在项目的属性中手动删除(资源 - >资源过滤器)。

答案 1 :(得分:2)

You can disable filter through customize filter in project explorer options, and uncheck the gradle build option in it.

您可以在项目资源管理器选项中通过自定义过滤器禁用过滤器,并取消选中其中的gradle构建选项。

答案 2 :(得分:0)

选择项目,然后选择下图所示的项目菜单。 screenshot
然后取消选中“ Grale构建文件夹”,然后您将看到构建文件夹,如下图所示。 screenshot