Skip to content

Commit b4f4dd3

Browse files
committed
Correct location of JDT config files in Gradle plugin
1 parent 37f3b1d commit b4f4dd3

File tree

1 file changed

+4
-4
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin

1 file changed

+4
-4
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ test {
3030
}
3131

3232
eclipseJdt {
33-
inputFile = rootProject.file('../../eclipse/org.eclipse.jdt.core.prefs')
34-
doLast {
35-
project.file('.settings/org.eclipse.jdt.ui.prefs').withWriter { writer ->
36-
writer << file('../../eclipse/org.eclipse.jdt.ui.prefs').text
33+
inputFile = rootProject.file('../../../eclipse/org.eclipse.jdt.core.prefs')
34+
doLast {
35+
project.file('.settings/org.eclipse.jdt.ui.prefs').withWriter { writer ->
36+
writer << file('../../../eclipse/org.eclipse.jdt.ui.prefs').text
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)