File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ dependencies {
37
37
}
38
38
39
39
group = ' me.sunlan'
40
- version = ' 1.0.2'
40
+ version = ' 1.0.3'
41
+ description = ' Yet another extremely fast alternative for Java reflection'
41
42
42
43
sourceCompatibility = JavaVersion . VERSION_1_8
43
44
targetCompatibility = JavaVersion . VERSION_1_8
@@ -70,14 +71,16 @@ java {
70
71
jar {
71
72
manifest {
72
73
attributes(
73
- ' Automatic-Module-Name' : ' me.sunlan.fastreflection'
74
+ ' Automatic-Module-Name' : ' me.sunlan.fastreflection' ,
75
+ ' Implementation-Title' : " ${ description} " ,
76
+ ' Implementation-Version' : " ${ version} "
74
77
)
75
78
}
76
79
}
77
80
78
81
tasks. named(' shadowJar' , com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar ) {
79
82
enableRelocation = true
80
- relocationPrefix = " me.sunlan.fastreflection.shaded"
83
+ relocate ' org.objectweb.asm ' , ' me.sunlan.fastreflection.shaded.org.objectweb.asm '
81
84
}
82
85
83
86
publishing {
You can’t perform that action at this time.
0 commit comments