mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
Fix dependencies for vmware hypervisor.
Remove unused imports from VmwareResource as they caused a dependency to xapi.
This commit is contained in:
parent
7545fe48ae
commit
25dd8de70a
@ -140,6 +140,26 @@
|
|||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<profiles>
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>vmware</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>nonoss</name>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cloudstack</groupId>
|
||||||
|
<artifactId>cloud-plugin-hypervisor-vmware</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.cloudstack</groupId>
|
||||||
|
<artifactId>cloud-vmware-base</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>systemvm</id>
|
<id>systemvm</id>
|
||||||
<activation>
|
<activation>
|
||||||
|
|||||||
@ -32,5 +32,23 @@
|
|||||||
<artifactId>cloud-vmware-base</artifactId>
|
<artifactId>cloud-vmware-base</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.cloud.com.vmware</groupId>
|
||||||
|
<artifactId>vmware-vim</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.cloud.com.vmware</groupId>
|
||||||
|
<artifactId>vmware-vim25</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.cloud.com.vmware</groupId>
|
||||||
|
<artifactId>vmware-apputils</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
|||||||
@ -250,9 +250,6 @@ import com.vmware.vim25.VirtualMachineGuestOsIdentifier;
|
|||||||
import com.vmware.vim25.VirtualMachinePowerState;
|
import com.vmware.vim25.VirtualMachinePowerState;
|
||||||
import com.vmware.vim25.VirtualMachineRuntimeInfo;
|
import com.vmware.vim25.VirtualMachineRuntimeInfo;
|
||||||
import com.vmware.vim25.VirtualSCSISharing;
|
import com.vmware.vim25.VirtualSCSISharing;
|
||||||
import com.xensource.xenapi.Connection;
|
|
||||||
import com.xensource.xenapi.VIF;
|
|
||||||
import com.xensource.xenapi.VM;
|
|
||||||
|
|
||||||
public class VmwareResource implements StoragePoolResource, ServerResource, VmwareHostService {
|
public class VmwareResource implements StoragePoolResource, ServerResource, VmwareHostService {
|
||||||
private static final Logger s_logger = Logger.getLogger(VmwareResource.class);
|
private static final Logger s_logger = Logger.getLogger(VmwareResource.class);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user