Skip to content

Commit ce7c369

Browse files
storpool: fix mvn pom.xml build issue
Signed-off-by: Rohit Yadav <[email protected]>
1 parent 5bc7024 commit ce7c369

File tree

1 file changed

+70
-65
lines changed
  • plugins/storage/volume/storpool

1 file changed

+70
-65
lines changed
Lines changed: 70 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,73 @@
11
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
2-
license agreements. See the NOTICE file distributed with this work for additional
3-
information regarding copyright ownership. The ASF licenses this file to
4-
you under the Apache License, Version 2.0 (the "License"); you may not use
5-
this file except in compliance with the License. You may obtain a copy of
6-
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
7-
by applicable law or agreed to in writing, software distributed under the
8-
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
9-
OF ANY KIND, either express or implied. See the License for the specific
10-
language governing permissions and limitations under the License. -->
2+
license agreements. See the NOTICE file distributed with this work for additional
3+
information regarding copyright ownership. The ASF licenses this file to
4+
you under the Apache License, Version 2.0 (the "License"); you may not use
5+
this file except in compliance with the License. You may obtain a copy of
6+
the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
7+
by applicable law or agreed to in writing, software distributed under the
8+
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
9+
OF ANY KIND, either express or implied. See the License for the specific
10+
language governing permissions and limitations under the License. -->
1111
<project xmlns="http://maven.apache.org/POM/4.0.0"
12-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14-
<modelVersion>4.0.0</modelVersion>
15-
<artifactId>cloud-plugin-storage-volume-storpool</artifactId>
16-
<name>Apache CloudStack Plugin - Storage Volume StorPool provider</name>
17-
<parent>
18-
<groupId>org.apache.cloudstack</groupId>
19-
<artifactId>cloudstack-plugins</artifactId>
20-
<version>4.17.0.0</version>
21-
<relativePath>../../../pom.xml</relativePath>
22-
</parent>
23-
<dependencies>
24-
<dependency>
25-
<groupId>org.apache.cloudstack</groupId>
26-
<artifactId>cloud-engine-storage-volume</artifactId>
27-
<version>${project.version}</version>
28-
</dependency>
29-
<dependency>
30-
<groupId>org.apache.cloudstack</groupId>
31-
<artifactId>cloud-engine-storage-snapshot</artifactId>
32-
<version>${project.version}</version>
33-
</dependency>
34-
<dependency>
35-
<groupId>org.apache.cloudstack</groupId>
36-
<artifactId>cloud-plugin-hypervisor-kvm</artifactId>
37-
<version>${project.version}</version>
38-
</dependency>
39-
<dependency>
40-
<groupId>org.apache.cloudstack</groupId>
41-
<artifactId>cloud-engine-orchestration</artifactId>
42-
<version>${project.version}</version>
43-
</dependency>
44-
<dependency>
45-
<groupId>org.apache.commons</groupId>
46-
<artifactId>commons-collections4</artifactId>
47-
<version>4.4</version>
48-
</dependency>
49-
</dependencies>
50-
<build>
51-
<plugins>
52-
<plugin>
53-
<artifactId>maven-surefire-plugin</artifactId>
54-
<configuration>
55-
<skipTests>true</skipTests>
56-
</configuration>
57-
<executions>
58-
<execution>
59-
<phase>integration-test</phase>
60-
<goals>
61-
<goal>test</goal>
62-
</goals>
63-
</execution>
64-
</executions>
65-
</plugin>
66-
</plugins>
67-
</build>
12+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
13+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
14+
<modelVersion>4.0.0</modelVersion>
15+
<artifactId>cloud-plugin-storage-volume-storpool</artifactId>
16+
<name>Apache CloudStack Plugin - Storage Volume StorPool provider</name>
17+
<parent>
18+
<groupId>org.apache.cloudstack</groupId>
19+
<artifactId>cloudstack-plugins</artifactId>
20+
<version>4.17.0.0</version>
21+
<relativePath>../../../pom.xml</relativePath>
22+
</parent>
23+
<dependencies>
24+
<dependency>
25+
<groupId>org.apache.cloudstack</groupId>
26+
<artifactId>cloud-engine-storage-volume</artifactId>
27+
<version>${project.version}</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>org.apache.cloudstack</groupId>
31+
<artifactId>cloud-engine-storage-snapshot</artifactId>
32+
<version>${project.version}</version>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.apache.cloudstack</groupId>
36+
<artifactId>cloud-plugin-hypervisor-kvm</artifactId>
37+
<version>${project.version}</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.apache.cloudstack</groupId>
41+
<artifactId>cloud-engine-orchestration</artifactId>
42+
<version>${project.version}</version>
43+
</dependency>
44+
<dependency>
45+
<groupId>ch.qos.reload4j</groupId>
46+
<artifactId>reload4j</artifactId>
47+
<version>${cs.reload4j.version}</version>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.apache.commons</groupId>
51+
<artifactId>commons-collections4</artifactId>
52+
<version>4.4</version>
53+
</dependency>
54+
</dependencies>
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<artifactId>maven-surefire-plugin</artifactId>
59+
<configuration>
60+
<skipTests>true</skipTests>
61+
</configuration>
62+
<executions>
63+
<execution>
64+
<phase>integration-test</phase>
65+
<goals>
66+
<goal>test</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
</plugins>
72+
</build>
6873
</project>

0 commit comments

Comments
 (0)