Skip to content

Commit fd9e88d

Browse files
committed
Skip Animal Sniffer for the time being (since it chokes on JDK 9 bytecode)
1 parent 6d5af60 commit fd9e88d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,13 @@ configure(allprojects) { project ->
201201
classpath: configurations.sniffer.asPath
202202
)
203203

204-
ant.animalSniffer(
205-
signature: "$buildDir/javaApiSignature/javaApi.signature",
206-
classpath: sourceSets.main.compileClasspath.asPath) {
207-
path(path: sourceSets.main.output.classesDir)
208-
annotation(className: "org.springframework.lang.UsesJava7")
209-
annotation(className: "org.springframework.lang.UsesJava8")
210-
annotation(className: "org.springframework.lang.UsesSunHttpServer")
211-
}
204+
// TODO: Animal Sniffer currently chokes on optional JDK 9 bytecode in AspectJ 1.9 beta 5
205+
// ant.animalSniffer(
206+
// signature: "$buildDir/javaApiSignature/javaApi.signature",
207+
// classpath: sourceSets.main.compileClasspath.asPath) {
208+
// path(path: sourceSets.main.output.classesDir)
209+
// annotation(className: "org.springframework.lang.UsesSunHttpServer")
210+
// }
212211
}
213212
}
214213

0 commit comments

Comments
 (0)