Skip to content

Commit

Permalink
Merge pull request #66 from orbinson/feature/upgrade-asm-version
Browse files Browse the repository at this point in the history
Upgrade ASM to a version that supports JDK 21
  • Loading branch information
royteeuwen authored Sep 16, 2024
2 parents ab6e36b + 2f3a12b commit 2c905cb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Update to version of ASM that supports JDK21 [#65](https://github.com/orbinson/aem-groovy-console/issues/65)

## [19.0.7] - 2024-08-07

### Changed
Expand Down
10 changes: 5 additions & 5 deletions all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,27 +241,27 @@
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.4</version>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-analysis</artifactId>
<version>9.4</version>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.4</version>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-util</artifactId>
<version>9.4</version>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
<version>9.4</version>
<version>${asm.version}</version>
</dependency>


Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<bnd.version>6.4.0</bnd.version>
<aem.version>6.5.10</aem.version>
<groovy.version>4.0.22</groovy.version>
<asm.version>9.7</asm.version>

<!-- SonarCloud -->
<sonar.organization>orbinson</sonar.organization>
Expand Down

0 comments on commit 2c905cb

Please sign in to comment.