Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ configurations {
dependencies {
annotation project(':annotation')
implementation project(':annotation')
implementation 'org.ow2.asm:asm:9.6'
implementation 'org.ow2.asm:asm:9.9.1'
implementation 'org.apache.ant:ant:1.10.14'
testImplementation 'junit:junit:4.13.2'
}
Expand All @@ -50,7 +50,7 @@ task generateSources(type: Copy) {
// Use generated sources
compileJava.dependsOn generateSources

def LIBRARIES = ["asm-9.6.jar"]
def LIBRARIES = ["asm-9.9.1.jar"]
def LIBRARY_JARS = configurations.dependents.filter {
file -> file.name in LIBRARIES
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface ClassConstants
/**
* The constant MAJOR_VERSION.
*/
public static final int MAJOR_VERSION = 0x41;
public static final int MAJOR_VERSION = 0x45;

/**
* The constant ACC_PUBLIC.
Expand Down
Loading