我有一個使用Gradle構建的項目。在我安裝Gradle Eclipse插件之前,我能夠在Eclipse中看到gradle build文件夾。但是,在安裝插件(Buildship)並創建並構建新的Gradle項目之後,我不再能夠在Project Explorer或Package Explorer或Navigator中看到構建文件夾。我能夠從Windows資源管理器中看到構建文件夾和jar文件。我試圖從「自定義視圖...」中更改設置,但它沒有解決問題。有人可以讓我知道如何讓生成文件夾顯示出來嗎?謝謝。安裝Gradle Eclipse Plugin後未顯示Gradle 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'
}
我仍然使用STS,但Buildship可能會將生成文件夾標記爲派生或具有排除模式。您可以在Eclipse的項目屬性視圖中查看項目的構建路徑。 –