You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifically set the source level in generated eclipse projects to 1.7
rather than 1.8. Allows the current eclipse milestone (4.3 M6) in
combination with JDK 8.0 to be used for Spring 4.0 development.
// Until eclipse fully supports Java 8 use 1.7 source level
9
+
eclipse.jdt {
10
+
sourceCompatibility =1.7
11
+
targetCompatibility =1.7
12
+
}
13
+
8
14
// Replace classpath entries with project dependencies (GRADLE-1116)
9
15
eclipse.classpath.file.whenMerged { classpath ->
10
16
def regexp =/.*?\/([^\/]+)\/build\/[^\/]+\/(?:main|test)/// only match those that end in main or test (avoids removing necessary entries like build/classes/jaxb)
0 commit comments