Skip to content

Commit

Permalink
Update to AspectJ 1.9.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Feb 15, 2024
1 parent c66bdfc commit 80c7c09
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions documentation/src/docs/asciidoc/_aspectj.adoc
Original file line number Diff line number Diff line change
@@ -65,14 +65,14 @@ This enables the usage of AspectJ in combination with annotation processors like
.Groovy
----
dependencies {
implementation "org.aspectj:aspectjrt:1.9.8.RC3"
implementation "org.aspectj:aspectjrt:1.9.21.1"
}
----
[source, kotlin, role="secondary"]
.Kotlin
----
dependencies {
implementation("org.aspectj:aspectjrt:1.9.8.RC3")
implementation("org.aspectj:aspectjrt:1.9.21.1")
}
----
--
2 changes: 1 addition & 1 deletion examples/aspectj/aspect/build.gradle
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ java {
}

dependencies {
implementation "org.aspectj:aspectjrt:1.9.21"
implementation "org.aspectj:aspectjrt:1.9.21.1"
}

compileAspectj {
2 changes: 1 addition & 1 deletion examples/aspectj/httpcore-nio/build.gradle
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ java {

dependencies {
inpath 'org.apache.httpcomponents:httpcore-nio:4.4.16'
implementation "org.aspectj:aspectjrt:1.9.21"
implementation "org.aspectj:aspectjrt:1.9.21.1"

testImplementation 'junit:junit:4.13.2'
}
2 changes: 1 addition & 1 deletion examples/aspectj/test/build.gradle
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ java {
}

dependencies {
implementation "org.aspectj:aspectjrt:1.9.21"
implementation "org.aspectj:aspectjrt:1.9.21.1"

testImplementation 'junit:junit:4.13.2'
}
2 changes: 1 addition & 1 deletion examples/aspectj/weaving/build.gradle
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ dependencies {

implementation "org.slf4j:slf4j-api:2.+"

implementation "org.aspectj:aspectjrt:1.9.21"
implementation "org.aspectj:aspectjrt:1.9.21.1"
implementation localGroovy()

testImplementation "junit:junit:4.13.2"

0 comments on commit 80c7c09

Please sign in to comment.