Skip to content

Commit f4a4417

Browse files
pom.xml: add property project.systemvm.template.location (#7706)
* pom.xml: add property project.systemvm.template.location * pom.xml: update project.systemvm.template.location
1 parent d89d405 commit f4a4417

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

engine/schema/pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
<goal>wget</goal>
123123
</goals>
124124
<configuration>
125-
<url>https://download.cloudstack.org/systemvm/${cs.version}/md5sum.txt</url>
125+
<url>${project.systemvm.template.location}/${cs.version}/md5sum.txt</url>
126126
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
127127
<skipCache>true</skipCache>
128128
<overwrite>true</overwrite>
@@ -181,7 +181,7 @@
181181
</goals>
182182
<configuration>
183183
<checkSignature>true</checkSignature>
184-
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-kvm.qcow2.bz2</url>
184+
<url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-kvm.qcow2.bz2</url>
185185
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
186186
<md5>${kvm.checksum}</md5>
187187
</configuration>
@@ -217,7 +217,7 @@
217217
</goals>
218218
<configuration>
219219
<checkSignature>true</checkSignature>
220-
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-vmware.ova</url>
220+
<url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-vmware.ova</url>
221221
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
222222
<md5>${vmware.checksum}</md5>
223223
</configuration>
@@ -253,7 +253,7 @@
253253
</goals>
254254
<configuration>
255255
<checkSignature>true</checkSignature>
256-
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-xen.vhd.bz2</url>
256+
<url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-xen.vhd.bz2</url>
257257
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
258258
<md5>${xen.checksum}</md5>
259259
</configuration>
@@ -289,7 +289,7 @@
289289
</goals>
290290
<configuration>
291291
<checkSignature>true</checkSignature>
292-
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-ovm.raw.bz2</url>
292+
<url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-ovm.raw.bz2</url>
293293
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
294294
<md5>${ovm.checksum}</md5>
295295
</configuration>
@@ -325,7 +325,7 @@
325325
</goals>
326326
<configuration>
327327
<checkSignature>true</checkSignature>
328-
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-hyperv.vhd.zip</url>
328+
<url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-hyperv.vhd.zip</url>
329329
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
330330
<md5>${hyperv.checksum}</md5>
331331
</configuration>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
<!-- keep in alphabetic order -->
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
52+
<project.systemvm.template.location>https://download.cloudstack.org/systemvm</project.systemvm.template.location>
5253
<project.systemvm.template.version>4.18.0.0</project.systemvm.template.version>
5354
<sonar.organization>apache</sonar.organization>
5455
<sonar.host.url>https://sonarcloud.io</sonar.host.url>

0 commit comments

Comments
 (0)