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