Skip to content

Commit

Permalink
Update asm dependency (#112)
Browse files Browse the repository at this point in the history
Allows downstream projects to use newer java versions when depending on tiny-remapper.
  • Loading branch information
brickmonster authored Sep 27, 2023
1 parent f1b8540 commit 36ef1ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8

version = '0.8.9'
version = '0.8.10'

def ENV = System.getenv()
version = version + (ENV.GITHUB_ACTIONS ? "" : "+local")
Expand All @@ -22,10 +22,10 @@ repositories {
}

dependencies {
api 'org.ow2.asm:asm:9.3'
api 'org.ow2.asm:asm-commons:9.3'
implementation 'org.ow2.asm:asm-tree:9.3'
implementation 'org.ow2.asm:asm-util:9.3'
api 'org.ow2.asm:asm:9.5'
api 'org.ow2.asm:asm-commons:9.5'
implementation 'org.ow2.asm:asm-tree:9.5'
implementation 'org.ow2.asm:asm-util:9.5'

testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
}
Expand Down

0 comments on commit 36ef1ec

Please sign in to comment.