Skip to content

Commit

Permalink
Upgrade to AspectJ 1.9.8 RC1 for Java 17 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Oct 8, 2021
1 parent f14bd50 commit fa3a2dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ configure(allprojects) { project ->
}
dependency "com.google.code.findbugs:jsr305:3.0.2"

dependencySet(group: 'org.aspectj', version: '1.9.7') {
dependencySet(group: 'org.aspectj', version: '1.9.8.RC1') {
entry 'aspectjrt'
entry 'aspectjtools'
entry 'aspectjweaver'
Expand Down
8 changes: 4 additions & 4 deletions spring-aspects/spring-aspects.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ sourceSets.test.java.srcDirs = files()
aspectj.version = dependencyManagement.managedVersions['org.aspectj:aspectjweaver']

compileAspectj {
sourceCompatibility "1.8"
targetCompatibility "1.8"
sourceCompatibility "17"
targetCompatibility "17"
}
compileTestAspectj {
sourceCompatibility "1.8"
targetCompatibility "1.8"
sourceCompatibility "17"
targetCompatibility "17"
}

dependencies {
Expand Down

0 comments on commit fa3a2dc

Please sign in to comment.