Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4f8ce7

Browse files
committedOct 24, 2017
Upgrade to AspectJ 1.9 RC1
Issue: SPR-16077
1 parent 182da15 commit a4f8ce7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ configure(allprojects) { project ->
4141
group = "org.springframework"
4242
version = qualifyVersionIfNecessary(version)
4343

44-
ext.aspectjVersion = "1.8.11"
44+
ext.aspectjVersion = "1.8.12"
4545
ext.freemarkerVersion = "2.3.26-incubating"
4646
ext.groovyVersion = "2.4.12"
4747
ext.hsqldbVersion = "2.4.0"

‎spring-aspects/spring-aspects.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ compileTestJava {
8787

8888
dependencies {
8989
aspects(project(":spring-orm"))
90-
ajc("org.aspectj:aspectjtools:1.9.0.BETA-7") // for JDK 9 build compatibility
91-
rt("org.aspectj:aspectjrt:1.9.0.BETA-7") // for JDK 9 build compatibility
90+
ajc("org.aspectj:aspectjtools:1.9.0.RC1") // for JDK 9 build compatibility
91+
rt("org.aspectj:aspectjrt:1.9.0.RC1") // for JDK 9 build compatibility
9292
compile("org.aspectj:aspectjweaver:${aspectjVersion}") // for Maven POM exposure
9393
optional(project(":spring-aop")) // for @Async support
9494
optional(project(":spring-beans")) // for @Configurable support

0 commit comments

Comments
 (0)
Please sign in to comment.