@@ -113,16 +113,16 @@ project.tasks["jar"].dependsOn(project.tasks["dokka"])
113113task fatJar (type : Jar ) {
114114 manifest {
115115 attributes([
116- " Specification-Title" : " $ projectEssentialsName -MOD " ,
116+ " Specification-Title" : projectEssentialsName,
117117 " Specification-Vendor" : projectEssentialsVendor,
118118 " Specification-Version" : projectEssentialsVersion,
119- " Implementation-Title" : " $ projectEssentialsName -MOD " ,
119+ " Implementation-Title" : projectEssentialsName,
120120 " Implementation-Version" : projectEssentialsVersion,
121121 " Implementation-Vendor" : projectEssentialsVendor,
122122 " Implementation-Timestamp" : new Date (). format(" yyyy-MM-dd'T'HH:mm:ssZ" )
123123 ])
124124 }
125- baseName = project. name + ' -mod '
125+ baseName = project. name + ' -MOD '
126126 from configurations. embed. collect { it. isDirectory() ? it : zipTree(it) }
127127 with jar
128128}
@@ -132,16 +132,16 @@ project.tasks["jar"].dependsOn(project.tasks["fatJar"])
132132jar {
133133 manifest {
134134 attributes([
135- " Specification-Title" : " $ projectEssentialsName -API " ,
135+ " Specification-Title" : projectEssentialsName,
136136 " Specification-Vendor" : projectEssentialsVendor,
137137 " Specification-Version" : projectEssentialsVersion,
138- " Implementation-Title" : " $ projectEssentialsName -API " ,
138+ " Implementation-Title" : projectEssentialsName,
139139 " Implementation-Version" : projectEssentialsVersion,
140140 " Implementation-Vendor" : projectEssentialsVendor,
141141 " Implementation-Timestamp" : new Date (). format(" yyyy-MM-dd'T'HH:mm:ssZ" )
142142 ])
143143 }
144- baseName = project. name + ' -api '
144+ baseName = project. name + ' -API '
145145}
146146
147147sourceCompatibility = targetCompatibility =
0 commit comments