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 {
3737}
3838
3939group = ' me.sunlan'
40- version = ' 1.0.2'
40+ version = ' 1.0.3'
41+ description = ' Yet another extremely fast alternative for Java reflection'
4142
4243sourceCompatibility = JavaVersion . VERSION_1_8
4344targetCompatibility = JavaVersion . VERSION_1_8
@@ -70,14 +71,16 @@ java {
7071jar {
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
7881tasks. 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
8386publishing {
You can’t perform that action at this time.
0 commit comments