Skip to content

Commit 97735e4

Browse files
committed
Proper references to JDK 9+ (including JDK 10) in build comments
1 parent 28ea718 commit 97735e4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

spring-aspects/spring-aspects.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
description = "Spring Aspects"
22

3-
// redefine the compileJava and compileTestJava tasks in order to
4-
// compile sources with ajc instead of javac
3+
// Redefine the compileJava and compileTestJava tasks in order to compile sources with ajc instead of javac
54

65
configurations {
76
rt
@@ -81,8 +80,8 @@ compileTestJava {
8180

8281
dependencies {
8382
aspects(project(":spring-orm"))
84-
ajc("org.aspectj:aspectjtools:1.9.0.RC2") // for JDK 9 build compatibility
85-
rt("org.aspectj:aspectjrt:1.9.0.RC2") // for JDK 9 build compatibility
83+
ajc("org.aspectj:aspectjtools:1.9.0.RC2") // for JDK 9+ build compatibility
84+
rt("org.aspectj:aspectjrt:1.9.0.RC2") // for JDK 9+ build compatibility
8685
compile("org.aspectj:aspectjweaver:${aspectjVersion}") // for Maven POM exposure
8786
optional(project(":spring-aop")) // for @Async support
8887
optional(project(":spring-beans")) // for @Configurable support

0 commit comments

Comments
 (0)