|
| 1 | +<!-- 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. --> |
| 11 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 12 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 13 | + <modelVersion>4.0.0</modelVersion> |
| 14 | + <artifactId>cloud-engine-storage-imagemotion</artifactId> |
| 15 | + <name>Apache CloudStack Engine Storage Image Motion Component</name> |
| 16 | + <parent> |
| 17 | + <groupId>org.apache.cloudstack</groupId> |
| 18 | + <artifactId>cloud-engine</artifactId> |
| 19 | + <version>4.1.0-SNAPSHOT</version> |
| 20 | + <relativePath>../../pom.xml</relativePath> |
| 21 | + </parent> |
| 22 | + <dependencies> |
| 23 | + <dependency> |
| 24 | + <groupId>org.apache.cloudstack</groupId> |
| 25 | + <artifactId>cloud-engine-storage</artifactId> |
| 26 | + <version>${project.version}</version> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>org.apache.cloudstack</groupId> |
| 30 | + <artifactId>cloud-engine-storage-volume</artifactId> |
| 31 | + <version>${project.version}</version> |
| 32 | + <scope>runtime</scope> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.apache.cloudstack</groupId> |
| 36 | + <artifactId>cloud-engine-storage-image</artifactId> |
| 37 | + <version>${project.version}</version> |
| 38 | + <scope>runtime</scope> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>mysql</groupId> |
| 42 | + <artifactId>mysql-connector-java</artifactId> |
| 43 | + <version>${cs.mysql.version}</version> |
| 44 | + <scope>provided</scope> |
| 45 | + </dependency> |
| 46 | + <dependency> |
| 47 | + <groupId>org.mockito</groupId> |
| 48 | + <artifactId>mockito-all</artifactId> |
| 49 | + <version>1.9.5</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>javax.inject</groupId> |
| 53 | + <artifactId>javax.inject</artifactId> |
| 54 | + <version>1</version> |
| 55 | + </dependency> |
| 56 | + </dependencies> |
| 57 | + <build> |
| 58 | + <defaultGoal>install</defaultGoal> |
| 59 | + <sourceDirectory>src</sourceDirectory> |
| 60 | + <testSourceDirectory>test</testSourceDirectory> |
| 61 | + </build> |
| 62 | +</project> |
0 commit comments