Skip to content

Commit 540dcc1

Browse files
committed
Merge remote-tracking branch 'apache/4.18'
2 parents 9bc0dd7 + 29c7b31 commit 540dcc1

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

plugins/storage/volume/storpool/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,31 @@
6969
</dependencies>
7070
<build>
7171
<plugins>
72+
<plugin>
73+
<groupId>org.codehaus.gmaven</groupId>
74+
<artifactId>gmaven-plugin</artifactId>
75+
<version>1.5</version>
76+
<executions>
77+
<execution>
78+
<id>set-properties</id>
79+
<phase>validate</phase>
80+
<goals>
81+
<goal>execute</goal>
82+
</goals>
83+
<configuration>
84+
<providerSelection>1.7</providerSelection>
85+
<source>
86+
File git = new File("./.git")
87+
if (!git.exists()) {
88+
pom.properties['storpool.skip.git.properties'] = 'true'
89+
} else {
90+
pom.properties['storpool.skip.git.properties'] = 'false'
91+
}
92+
</source>
93+
</configuration>
94+
</execution>
95+
</executions>
96+
</plugin>
7297
<plugin>
7398
<artifactId>maven-surefire-plugin</artifactId>
7499
<executions>
@@ -93,6 +118,7 @@
93118
</execution>
94119
</executions>
95120
<configuration>
121+
<skip>${storpool.skip.git.properties}</skip>
96122
<dotGitDirectory>${project.basedir}/.git</dotGitDirectory>
97123
<prefix>git</prefix>
98124
<verbose>false</verbose>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5252
<project.systemvm.template.location>https://download.cloudstack.org/systemvm</project.systemvm.template.location>
53-
<project.systemvm.template.version>4.18.0.0</project.systemvm.template.version>
53+
<project.systemvm.template.version>4.18.1.0</project.systemvm.template.version>
5454
<sonar.organization>apache</sonar.organization>
5555
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
5656

tools/appliance/systemvmtemplate/scripts/configure_systemvm_services.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
set -e
2020
set -x
2121

22-
CLOUDSTACK_RELEASE=4.18.0
22+
CLOUDSTACK_RELEASE=4.18.1
2323

2424
function configure_apache2() {
2525
# Enable ssl, rewrite and auth

tools/appliance/systemvmtemplate/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"headless": true,
2929
"http_directory": "http",
3030
"iso_checksum": "sha512:4460ef6470f6d8ae193c268e213d33a6a5a0da90c2d30c1024784faa4e4473f0c9b546a41e2d34c43fbbd43542ae4fb93cfd5cb6ac9b88a476f1a6877c478674",
31-
"iso_url": "https://cdimage.debian.org/debian-cd/11.7.0/amd64/iso-cd/debian-11.7.0-amd64-netinst.iso",
31+
"iso_url": "https://cdimage.debian.org/mirror/cdimage/archive/11.7.0/amd64/iso-cd/debian-11.7.0-amd64-netinst.iso",
3232
"net_device": "virtio-net",
3333
"output_directory": "../dist",
3434
"qemuargs": [

0 commit comments

Comments
 (0)