Skip to content

Commit aa96e3b

Browse files
committed
Update build.gradle
1 parent 725fb60 commit aa96e3b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,16 +113,16 @@ project.tasks["jar"].dependsOn(project.tasks["dokka"])
113113
task 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"])
132132
jar {
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

147147
sourceCompatibility = targetCompatibility =

0 commit comments

Comments
 (0)