pom.xml: add property project.systemvm.template.location (#7706)

* pom.xml: add property project.systemvm.template.location

* pom.xml: update project.systemvm.template.location
This commit is contained in:
Wei Zhou 2023-07-28 17:05:44 +08:00 committed by GitHub
parent d89d40595c
commit f4a4417e4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -122,7 +122,7 @@
<goal>wget</goal> <goal>wget</goal>
</goals> </goals>
<configuration> <configuration>
<url>https://download.cloudstack.org/systemvm/${cs.version}/md5sum.txt</url> <url>${project.systemvm.template.location}/${cs.version}/md5sum.txt</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<skipCache>true</skipCache> <skipCache>true</skipCache>
<overwrite>true</overwrite> <overwrite>true</overwrite>
@ -181,7 +181,7 @@
</goals> </goals>
<configuration> <configuration>
<checkSignature>true</checkSignature> <checkSignature>true</checkSignature>
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-kvm.qcow2.bz2</url> <url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-kvm.qcow2.bz2</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<md5>${kvm.checksum}</md5> <md5>${kvm.checksum}</md5>
</configuration> </configuration>
@ -217,7 +217,7 @@
</goals> </goals>
<configuration> <configuration>
<checkSignature>true</checkSignature> <checkSignature>true</checkSignature>
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-vmware.ova</url> <url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-vmware.ova</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<md5>${vmware.checksum}</md5> <md5>${vmware.checksum}</md5>
</configuration> </configuration>
@ -253,7 +253,7 @@
</goals> </goals>
<configuration> <configuration>
<checkSignature>true</checkSignature> <checkSignature>true</checkSignature>
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-xen.vhd.bz2</url> <url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-xen.vhd.bz2</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<md5>${xen.checksum}</md5> <md5>${xen.checksum}</md5>
</configuration> </configuration>
@ -289,7 +289,7 @@
</goals> </goals>
<configuration> <configuration>
<checkSignature>true</checkSignature> <checkSignature>true</checkSignature>
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-ovm.raw.bz2</url> <url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-ovm.raw.bz2</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<md5>${ovm.checksum}</md5> <md5>${ovm.checksum}</md5>
</configuration> </configuration>
@ -325,7 +325,7 @@
</goals> </goals>
<configuration> <configuration>
<checkSignature>true</checkSignature> <checkSignature>true</checkSignature>
<url>https://download.cloudstack.org/systemvm/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-hyperv.vhd.zip</url> <url>${project.systemvm.template.location}/${cs.version}/systemvmtemplate-${cs.version}.${patch.version}-hyperv.vhd.zip</url>
<outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory> <outputDirectory>${basedir}/dist/systemvm-templates/</outputDirectory>
<md5>${hyperv.checksum}</md5> <md5>${hyperv.checksum}</md5>
</configuration> </configuration>

View File

@ -49,6 +49,7 @@
<!-- keep in alphabetic order --> <!-- keep in alphabetic order -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.systemvm.template.location>https://download.cloudstack.org/systemvm</project.systemvm.template.location>
<project.systemvm.template.version>4.18.0.0</project.systemvm.template.version> <project.systemvm.template.version>4.18.0.0</project.systemvm.template.version>
<sonar.organization>apache</sonar.organization> <sonar.organization>apache</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url> <sonar.host.url>https://sonarcloud.io</sonar.host.url>