@@ -125,25 +125,25 @@ tasks.register('buildIntegTestZip', Zip) {
125
125
tasks. register(' buildWindowsZip' , Zip ) {
126
126
configure(commonZipConfig)
127
127
archiveClassifier = ' windows-x86_64'
128
- with archiveFiles(modulesFiles(false , ' windows' ), ' zip' , ' windows' , ' x64' , false , true )
128
+ with archiveFiles(modulesFiles(false , ' windows-x86_64 ' ), ' zip' , ' windows' , ' x64' , false , true )
129
129
}
130
130
131
131
tasks. register(' buildOssWindowsZip' , Zip ) {
132
132
configure(commonZipConfig)
133
133
archiveClassifier = ' windows-x86_64'
134
- with archiveFiles(modulesFiles(true , ' windows' ), ' zip' , ' windows' , ' x64' , true , true )
134
+ with archiveFiles(modulesFiles(true , ' windows-x86_64 ' ), ' zip' , ' windows' , ' x64' , true , true )
135
135
}
136
136
137
137
tasks. register(' buildNoJdkWindowsZip' , Zip ) {
138
138
configure(commonZipConfig)
139
139
archiveClassifier = ' no-jdk-windows-x86_64'
140
- with archiveFiles(modulesFiles(false , ' windows' ), ' zip' , ' windows' , ' x64' , false , false )
140
+ with archiveFiles(modulesFiles(false , ' windows-x86_64 ' ), ' zip' , ' windows' , ' x64' , false , false )
141
141
}
142
142
143
143
tasks. register(' buildOssNoJdkWindowsZip' , Zip ) {
144
144
configure(commonZipConfig)
145
145
archiveClassifier = ' no-jdk-windows-x86_64'
146
- with archiveFiles(modulesFiles(true , ' windows' ), ' zip' , ' windows' , ' x64' , true , false )
146
+ with archiveFiles(modulesFiles(true , ' windows-x86_64 ' ), ' zip' , ' windows' , ' x64' , true , false )
147
147
}
148
148
149
149
Closure commonTarConfig = {
@@ -156,61 +156,61 @@ Closure commonTarConfig = {
156
156
tasks. register(' buildDarwinTar' , SymbolicLinkPreservingTar ) {
157
157
configure(commonTarConfig)
158
158
archiveClassifier = ' darwin-x86_64'
159
- with archiveFiles(modulesFiles(false , ' darwin' ), ' tar' , ' darwin' , ' x64' , false , true )
159
+ with archiveFiles(modulesFiles(false , ' darwin-x86_64 ' ), ' tar' , ' darwin' , ' x64' , false , true )
160
160
}
161
161
162
162
tasks. register(' buildOssDarwinTar' , SymbolicLinkPreservingTar ) {
163
163
configure(commonTarConfig)
164
164
archiveClassifier = ' darwin-x86_64'
165
- with archiveFiles(modulesFiles(true , ' darwin' ), ' tar' , ' darwin' , ' x64' , true , true )
165
+ with archiveFiles(modulesFiles(true , ' darwin-x86_64 ' ), ' tar' , ' darwin' , ' x64' , true , true )
166
166
}
167
167
168
168
tasks. register(' buildNoJdkDarwinTar' , SymbolicLinkPreservingTar ) {
169
169
configure(commonTarConfig)
170
170
archiveClassifier = ' no-jdk-darwin-x86_64'
171
- with archiveFiles(modulesFiles(false , ' darwin' ), ' tar' , ' darwin' , ' x64' , false , false )
171
+ with archiveFiles(modulesFiles(false , ' darwin-x86_64 ' ), ' tar' , ' darwin' , ' x64' , false , false )
172
172
}
173
173
174
174
tasks. register(' buildOssNoJdkDarwinTar' , SymbolicLinkPreservingTar ) {
175
175
configure(commonTarConfig)
176
176
archiveClassifier = ' no-jdk-darwin-x86_64'
177
- with archiveFiles(modulesFiles(true , ' darwin' ), ' tar' , ' darwin' , ' x64' , true , false )
177
+ with archiveFiles(modulesFiles(true , ' darwin-x86_64 ' ), ' tar' , ' darwin' , ' x64' , true , false )
178
178
}
179
179
180
180
tasks. register(' buildLinuxAarch64Tar' , SymbolicLinkPreservingTar ) {
181
181
configure(commonTarConfig)
182
182
archiveClassifier = ' linux-aarch64'
183
- with archiveFiles(modulesFiles(false , ' linux' ), ' tar' , ' linux' , ' aarch64' , false , true )
183
+ with archiveFiles(modulesFiles(false , ' linux-aarch64 ' ), ' tar' , ' linux' , ' aarch64' , false , true )
184
184
}
185
185
186
186
tasks. register(' buildLinuxTar' , SymbolicLinkPreservingTar ) {
187
187
configure(commonTarConfig)
188
188
archiveClassifier = ' linux-x86_64'
189
- with archiveFiles(modulesFiles(false , ' linux' ), ' tar' , ' linux' , ' x64' , false , true )
189
+ with archiveFiles(modulesFiles(false , ' linux-x86_64 ' ), ' tar' , ' linux' , ' x64' , false , true )
190
190
}
191
191
192
192
tasks. register(' buildOssLinuxAarch64Tar' , SymbolicLinkPreservingTar ) {
193
193
configure(commonTarConfig)
194
194
archiveClassifier = ' linux-aarch64'
195
- with archiveFiles(modulesFiles(true , ' linux' ), ' tar' , ' linux' , ' aarch64' , true , true )
195
+ with archiveFiles(modulesFiles(true , ' linux-aarch64 ' ), ' tar' , ' linux' , ' aarch64' , true , true )
196
196
}
197
197
198
198
tasks. register(' buildOssLinuxTar' , SymbolicLinkPreservingTar ) {
199
199
configure(commonTarConfig)
200
200
archiveClassifier = ' linux-x86_64'
201
- with archiveFiles(modulesFiles(true , ' linux' ), ' tar' , ' linux' , ' x64' , true , true )
201
+ with archiveFiles(modulesFiles(true , ' linux-x86_64 ' ), ' tar' , ' linux' , ' x64' , true , true )
202
202
}
203
203
204
204
tasks. register(' buildNoJdkLinuxTar' , SymbolicLinkPreservingTar ) {
205
205
configure(commonTarConfig)
206
206
archiveClassifier = ' no-jdk-linux-x86_64'
207
- with archiveFiles(modulesFiles(false , ' linux' ), ' tar' , ' linux' , ' x64' , false , false )
207
+ with archiveFiles(modulesFiles(false , ' linux-x86_64 ' ), ' tar' , ' linux' , ' x64' , false , false )
208
208
}
209
209
210
210
tasks. register(' buildOssNoJdkLinuxTar' , SymbolicLinkPreservingTar ) {
211
211
configure(commonTarConfig)
212
212
archiveClassifier = ' no-jdk-linux-x86_64'
213
- with archiveFiles(modulesFiles(true , ' linux' ), ' tar' , ' linux' , ' x64' , true , false )
213
+ with archiveFiles(modulesFiles(true , ' linux-x86_64 ' ), ' tar' , ' linux' , ' x64' , true , false )
214
214
}
215
215
216
216
Closure tarExists = { it -> new File (' /bin/tar' ). exists() || new File (' /usr/bin/tar' ). exists() || new File (' /usr/local/bin/tar' ). exists() }
0 commit comments