We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 070806b commit 7909653Copy full SHA for 7909653
scripts/download-rc.js
@@ -54,6 +54,19 @@ const downloadRC = () => {
54
console.log('${filename} already exists, download not required');
55
} else {
56
console.log(`Downloading: ${artifact} to ${filename}`);
57
+
58
+ const args = [
59
+ '-q',
60
+ 'org.apache.maven.plugins:maven-dependency-plugin:2.10:get',
61
+ '-Dtransitive=false',
62
+ `-DremoteRepositories=${repo}`,
63
+ `-Dartifact=${artifact}`,
64
+ `-Ddest=hazelcast-${filename}`
65
+ ]
66
+ console.log(`Running: 'mvn' ${args.join(' ')}`);
67
68
69
70
const subprocess = spawnSync('mvn', [
71
'-q',
72
'org.apache.maven.plugins:maven-dependency-plugin:2.10:get',
0 commit comments