@@ -113,16 +113,16 @@ project.tasks["jar"].dependsOn(project.tasks["dokka"])
113
113
task fatJar (type : Jar ) {
114
114
manifest {
115
115
attributes([
116
- " Specification-Title" : " $ projectEssentialsName -MOD " ,
116
+ " Specification-Title" : projectEssentialsName,
117
117
" Specification-Vendor" : projectEssentialsVendor,
118
118
" Specification-Version" : projectEssentialsVersion,
119
- " Implementation-Title" : " $ projectEssentialsName -MOD " ,
119
+ " Implementation-Title" : projectEssentialsName,
120
120
" Implementation-Version" : projectEssentialsVersion,
121
121
" Implementation-Vendor" : projectEssentialsVendor,
122
122
" Implementation-Timestamp" : new Date (). format(" yyyy-MM-dd'T'HH:mm:ssZ" )
123
123
])
124
124
}
125
- baseName = project. name + ' -mod '
125
+ baseName = project. name + ' -MOD '
126
126
from configurations. embed. collect { it. isDirectory() ? it : zipTree(it) }
127
127
with jar
128
128
}
@@ -132,16 +132,16 @@ project.tasks["jar"].dependsOn(project.tasks["fatJar"])
132
132
jar {
133
133
manifest {
134
134
attributes([
135
- " Specification-Title" : " $ projectEssentialsName -API " ,
135
+ " Specification-Title" : projectEssentialsName,
136
136
" Specification-Vendor" : projectEssentialsVendor,
137
137
" Specification-Version" : projectEssentialsVersion,
138
- " Implementation-Title" : " $ projectEssentialsName -API " ,
138
+ " Implementation-Title" : projectEssentialsName,
139
139
" Implementation-Version" : projectEssentialsVersion,
140
140
" Implementation-Vendor" : projectEssentialsVendor,
141
141
" Implementation-Timestamp" : new Date (). format(" yyyy-MM-dd'T'HH:mm:ssZ" )
142
142
])
143
143
}
144
- baseName = project. name + ' -api '
144
+ baseName = project. name + ' -API '
145
145
}
146
146
147
147
sourceCompatibility = targetCompatibility =
0 commit comments