Skip to content

Commit 9bcdd27

Browse files
committed
release 1.0.3
1 parent f398510 commit 9bcdd27

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

build.gradle

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ dependencies {
3737
}
3838

3939
group = 'me.sunlan'
40-
version = '1.0.2'
40+
version = '1.0.3'
41+
description = 'Yet another extremely fast alternative for Java reflection'
4142

4243
sourceCompatibility = JavaVersion.VERSION_1_8
4344
targetCompatibility = JavaVersion.VERSION_1_8
@@ -70,14 +71,16 @@ java {
7071
jar {
7172
manifest {
7273
attributes(
73-
'Automatic-Module-Name': 'me.sunlan.fastreflection'
74+
'Automatic-Module-Name': 'me.sunlan.fastreflection',
75+
'Implementation-Title': "${description}",
76+
'Implementation-Version': "${version}"
7477
)
7578
}
7679
}
7780

7881
tasks.named('shadowJar', com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar) {
7982
enableRelocation = true
80-
relocationPrefix = "me.sunlan.fastreflection.shaded"
83+
relocate 'org.objectweb.asm', 'me.sunlan.fastreflection.shaded.org.objectweb.asm'
8184
}
8285

8386
publishing {

0 commit comments

Comments
 (0)