|
9 | 9 | OF ANY KIND, either express or implied. See the License for the specific
|
10 | 10 | language governing permissions and limitations under the License. -->
|
11 | 11 | <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.1.0-SNAPSHOT</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.1.0-SNAPSHOT</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> |
68 | 73 | </project>
|
0 commit comments