Skip to content

Commit 72629f2

Browse files
authored
Merge pull request #771 from amvanbaren/bugfix/test-extensions-gradle
use download.run
2 parents 08f7bec + 1efd229 commit 72629f2

File tree

1 file changed

+41
-41
lines changed

1 file changed

+41
-41
lines changed

server/test-extensions.gradle

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,166 +1,166 @@
11
task downloadTestExtensions {
22
doLast {
3-
download {
3+
download.run {
44
src "https://open-vsx.org/api/vscode/sql/1.54.1/file/vscode.sql-1.54.1.vsix"
55
dest "${buildDir}/test-extensions-builtin/vscode.sql-1.54.1.vsix"
66
}
7-
download {
7+
download.run {
88
src "https://open-vsx.org/api/vscode/powershell/1.54.1/file/vscode.powershell-1.54.1.vsix"
99
dest "${buildDir}/test-extensions-builtin/vscode.powershell-1.54.1.vsix"
1010
}
11-
download {
11+
download.run {
1212
src "https://open-vsx.org/api/vscode/docker/1.54.1/file/vscode.docker-1.54.1.vsix"
1313
dest "${buildDir}/test-extensions-builtin/vscode.docker-1.54.1.vsix"
1414
}
15-
download {
15+
download.run {
1616
src "https://open-vsx.org/api/vscode/yaml/1.54.1/file/vscode.yaml-1.54.1.vsix"
1717
dest "${buildDir}/test-extensions-builtin/vscode.yaml-1.54.1.vsix"
1818
}
19-
download {
19+
download.run {
2020
src "https://github.com/microsoft/vscode-python/releases/download/2019.9.34911/ms-python-release.vsix"
2121
dest "${buildDir}/test-extensions/ms-python.python-2019.9.34911.vsix"
2222
}
23-
download {
23+
download.run {
2424
src "https://github.com/microsoft/vscode-python/releases/download/2019.10.41019/ms-python-release.vsix"
2525
dest "${buildDir}/test-extensions/ms-python.python-2019.10.41019.vsix"
2626
}
27-
download {
27+
download.run {
2828
src "https://github.com/microsoft/vscode-python/releases/download/2019.10.44104/ms-python-release.vsix"
2929
dest "${buildDir}/test-extensions/ms-python.python-2019.10.44104.vsix"
3030
}
31-
download {
31+
download.run {
3232
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/[email protected]"
3333
dest "${buildDir}/test-extensions/[email protected]"
3434
}
35-
download {
35+
download.run {
3636
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/[email protected]"
3737
dest "${buildDir}/test-extensions/[email protected]"
3838
}
39-
download {
39+
download.run {
4040
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/[email protected]"
4141
dest "${buildDir}/test-extensions/[email protected]"
4242
}
43-
download {
43+
download.run {
4444
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/[email protected]"
4545
dest "${buildDir}/test-extensions/[email protected]"
4646
}
47-
download {
47+
download.run {
4848
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/[email protected]"
4949
dest "${buildDir}/test-extensions/[email protected]"
5050
}
51-
download {
51+
download.run {
5252
src "https://github.com/redhat-developer/vscode-java/releases/download/v1.15.0/java-1.15.0.vsix"
5353
dest "${buildDir}/test-extensions/[email protected]"
5454
}
55-
download {
55+
download.run {
5656
src "https://github.com/HookyQR/VSCodeBeautify/releases/download/v0.1.3/beautify-0.1.3.vsix"
5757
dest "${buildDir}/test-extensions/HookyQR.beautify-0.1.3.vsix"
5858
}
59-
download {
59+
download.run {
6060
src "https://github.com/eamodio/vscode-gitlens/releases/download/v10.0.1/gitlens-10.0.1.vsix"
6161
dest "${buildDir}/test-extensions/eamodio.gitlens-10.0.1.vsix"
6262
}
63-
download {
63+
download.run {
6464
src "https://github.com/eamodio/vscode-gitlens/releases/download/v10.1.0/gitlens-10.1.0.vsix"
6565
dest "${buildDir}/test-extensions/eamodio.gitlens-10.1.0.vsix"
6666
}
67-
download {
67+
download.run {
6868
src "https://github.com/eamodio/vscode-gitlens/releases/download/v10.1.1/gitlens-10.1.1.vsix"
6969
dest "${buildDir}/test-extensions/eamodio.gitlens-10.1.1.vsix"
7070
}
71-
download {
71+
download.run {
7272
src "https://github.com/vuejs/vetur/releases/download/v0.22.5/vetur-0.22.5.vsix"
7373
dest "${buildDir}/test-extensions/octref.vetur-0.22.5.vsix"
7474
}
75-
download {
75+
download.run {
7676
src "https://github.com/vuejs/vetur/releases/download/v0.22.6/vetur-0.22.6.vsix"
7777
dest "${buildDir}/test-extensions/octref.vetur-0.22.6.vsix"
7878
}
79-
download {
79+
download.run {
8080
src "https://github.com/Wscats/omi-snippets/releases/download/2.03/eno-2.0.3.vsix"
8181
dest "${buildDir}/test-extensions/Wscats.eno-2.0.3.vsix"
8282
}
83-
download {
83+
download.run {
8484
src "https://github.com/microsoft/vscode-docker/releases/download/v0.8.1/vscode-docker-0.8.1.vsix"
8585
dest "${buildDir}/test-extensions/ms-azuretools.vscode-docker-0.8.1.vsix"
8686
}
87-
download {
87+
download.run {
8888
src "https://github.com/microsoft/vscode-docker/releases/download/v0.8.2/vscode-docker-0.8.2.vsix"
8989
dest "${buildDir}/test-extensions/ms-azuretools.vscode-docker-0.8.2.vsix"
9090
}
91-
download {
91+
download.run {
9292
src "https://github.com/ritwickdey/vscode-live-server/releases/download/v5.6.1/LiveServer-v5.6.1-linux.vsix"
9393
dest "${buildDir}/test-extensions/ritwickdey.live-server-5.6.1.vsix"
9494
}
95-
download {
95+
download.run {
9696
src "https://github.com/felixfbecker/vscode-php-intellisense/releases/download/v2.3.10/php-intellisense.vsix"
9797
dest "${buildDir}/test-extensions/felixfbecker.php-intellisense-2.3.10.vsix"
9898
}
99-
download {
99+
download.run {
100100
src "https://github.com/felixfbecker/vscode-php-intellisense/releases/download/v2.3.11/php-intellisense.vsix"
101101
dest "${buildDir}/test-extensions/felixfbecker.php-intellisense-2.3.11.vsix"
102102
}
103-
download {
103+
download.run {
104104
src "https://github.com/felixfbecker/vscode-php-intellisense/releases/download/v2.3.12/php-intellisense.vsix"
105105
dest "${buildDir}/test-extensions/felixfbecker.php-intellisense-2.3.12.vsix"
106106
}
107-
download {
107+
download.run {
108108
src "https://github.com/felixfbecker/vscode-php-intellisense/releases/download/v2.3.13/php-intellisense.vsix"
109109
dest "${buildDir}/test-extensions/felixfbecker.php-intellisense-2.3.13.vsix"
110110
}
111-
download {
111+
download.run {
112112
src "https://github.com/formulahendry/vscode-code-runner/releases/download/0.9.14/code-runner-0.9.14.vsix"
113113
dest "${buildDir}/test-extensions/formulahendry.code-runner-0.9.14.vsix"
114114
}
115-
download {
115+
download.run {
116116
src "https://github.com/redhat-developer/vscode-yaml/releases/download/0.4.0/redhat.vscode-yaml-0.4.0.vsix"
117117
dest "${buildDir}/test-extensions/redhat.vscode-yaml-0.4.0.vsix"
118118
}
119-
download {
119+
download.run {
120120
src "https://github.com/redhat-developer/vscode-yaml/releases/download/0.5.3-beta/vscode-yaml.vsix"
121121
dest "${buildDir}/test-extensions/redhat.vscode-yaml-0.5.3-beta.vsix"
122122
}
123-
download {
123+
download.run {
124124
src "https://github.com/microsoft/vscode-go/releases/download/0.11.6/Go-0.11.6.vsix"
125125
dest "${buildDir}/test-extensions/ms-vscode.Go-0.11.6.vsix"
126126
}
127-
download {
127+
download.run {
128128
src "https://github.com/microsoft/vscode-go/releases/download/0.11.7/Go-0.11.7.vsix"
129129
dest "${buildDir}/test-extensions/ms-vscode.Go-0.11.7.vsix"
130130
}
131-
download {
131+
download.run {
132132
src "https://github.com/microsoft/vscode-go/releases/download/0.11.8/Go-0.11.8.vsix"
133133
dest "${buildDir}/test-extensions/ms-vscode.Go-0.11.8.vsix"
134134
}
135-
download {
135+
download.run {
136136
src "https://github.com/microsoft/vscode-mssql/releases/download/v1.4.0/mssql-1.4.0-ubuntu.16.04-x64.vsix"
137137
dest "${buildDir}/test-extensions/ms-mssql.mssql-1.4.0.vsix"
138138
}
139-
download {
139+
download.run {
140140
src "https://github.com/microsoft/vscode-mssql/releases/download/v1.5.0-alpha.49/mssql-1.7.0-ubuntu.16.04-x64.vsix"
141141
dest "${buildDir}/test-extensions/ms-mssql.mssql-1.5.0-alpha.49.vsix"
142142
}
143-
download {
143+
download.run {
144144
src "https://github.com/PowerShell/vscode-powershell/releases/download/v2019.9.0/PowerShell-2019.9.0.vsix"
145145
dest "${buildDir}/test-extensions/ms-vscode.powershell-2019.9.0.vsix"
146146
}
147-
download {
147+
download.run {
148148
src "https://github.com/PowerShell/vscode-powershell/releases/download/v2019.11.0/PowerShell-2019.11.0.vsix"
149149
dest "${buildDir}/test-extensions/ms-vscode.powershell-2019.11.0.vsix"
150150
}
151-
download {
151+
download.run {
152152
src "https://github.com/DotJoshJohnson/vscode-xml/releases/download/v2.5.0/xml-2.5.0.vsix"
153153
dest "${buildDir}/test-extensions/DotJoshJohnson.xml-2.5.0.vsix"
154154
}
155-
download {
155+
download.run {
156156
src "https://github.com/xsburg/vscode-javascript-booster/releases/download/v0.11.0/vscode-javascript-booster-0.11.0.vsix"
157157
dest "${buildDir}/test-extensions/sburg.vscode-javascript-booster-0.11.0.vsix"
158158
}
159-
download {
159+
download.run {
160160
src "https://github.com/formulahendry/vscode-auto-close-tag/releases/download/0.5.5/auto-close-tag-0.5.5.vsix"
161161
dest "${buildDir}/test-extensions/formulahendry.auto-close-tag-0.5.5.vsix"
162162
}
163-
download {
163+
download.run {
164164
src "https://github.com/VSCodeVim/Vim/releases/download/v1.19.3/vim-1.19.3.vsix"
165165
dest "${buildDir}/test-extensions/vim-1.19.3.vsix"
166166
}

0 commit comments

Comments
 (0)