我有一个项目,我使用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'
}
答案 0 :(得分:6)
我在Gradle论坛(https://discuss.gradle.org/t/setting-eclipse-native-library-location/11075/2)的主题中找到了解决方案。
插件会安装带有排除模式的资源过滤器,您可以在项目的属性中手动删除(资源 - >资源过滤器)。
答案 1 :(得分:2)
答案 2 :(得分:0)
选择项目,然后选择下图所示的项目菜单。
screenshot
然后取消选中“ Grale构建文件夹”,然后您将看到构建文件夹,如下图所示。
screenshot