Skip to content

Commit

Permalink
release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellansun committed Jan 14, 2025
1 parent f398510 commit 9bcdd27
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ dependencies {
}

group = 'me.sunlan'
version = '1.0.2'
version = '1.0.3'
description = 'Yet another extremely fast alternative for Java reflection'

sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -70,14 +71,16 @@ java {
jar {
manifest {
attributes(
'Automatic-Module-Name': 'me.sunlan.fastreflection'
'Automatic-Module-Name': 'me.sunlan.fastreflection',
'Implementation-Title': "${description}",
'Implementation-Version': "${version}"
)
}
}

tasks.named('shadowJar', com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar) {
enableRelocation = true
relocationPrefix = "me.sunlan.fastreflection.shaded"
relocate 'org.objectweb.asm', 'me.sunlan.fastreflection.shaded.org.objectweb.asm'
}

publishing {
Expand Down

0 comments on commit 9bcdd27

Please sign in to comment.