mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	* Maven 3 support
* Pretty Format POM's * AWS API compiles now
This commit is contained in:
		
							parent
							
								
									c6a9e1b3a3
								
							
						
					
					
						commit
						ebc0fa458a
					
				| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-agent</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Agents</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -1,9 +1,8 @@ | ||||
| <?xml version="1.0"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<groupId>com.cloud</groupId> | ||||
| 	<artifactId>cloud-api</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack API</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
							
								
								
									
										98
									
								
								awsapi/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										98
									
								
								awsapi/pom.xml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,98 @@ | ||||
| <?xml version="1.0"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-awsapi</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack AWS API Bridge</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| 		<artifactId>cloud-parent</artifactId> | ||||
| 		<version>4.0.0-SNAPSHOT</version> | ||||
|     <relativePath>../parent/pom.xml</relativePath> | ||||
| 	</parent> | ||||
| 	<dependencies> | ||||
|     <dependency> | ||||
|       <groupId>org.apache.axis2</groupId> | ||||
|       <artifactId>axis2</artifactId> | ||||
|       <version>${cs.axis2.version}</version> | ||||
|     </dependency> | ||||
| 				<dependency> | ||||
| 						<groupId>org.apache.ws.commons.axiom</groupId> | ||||
| 						<artifactId>axiom-api</artifactId> | ||||
| 						<version>${cs.axiom.version}</version> | ||||
| 				</dependency> | ||||
| <dependency> | ||||
|     <groupId>org.hibernate</groupId> | ||||
|     <artifactId>hibernate-core</artifactId> | ||||
|     <version>${cs.hibernate.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>org.hibernate</groupId> | ||||
|     <artifactId>hibernate-annotations</artifactId> | ||||
|     <version>${cs.hibernate.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>org.hibernate</groupId> | ||||
|     <artifactId>hibernate-entitymanager</artifactId> | ||||
|     <version>${cs.hibernate.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>log4j</groupId> | ||||
|     <artifactId>log4j</artifactId> | ||||
|     <version>${cs.log4j.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>org.apache.neethi</groupId> | ||||
|     <artifactId>neethi</artifactId> | ||||
|     <version>${cs.neethi.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
| <groupId>com.google.code.gson</groupId> | ||||
| <artifactId>gson</artifactId> | ||||
| <version>${cs.gson.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
| <groupId>commons-codec</groupId> | ||||
| <artifactId>commons-codec</artifactId> | ||||
| <version>${cs.codec.version}</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>javax.servlet</groupId> | ||||
|     <artifactId>servlet-api</artifactId> | ||||
|     <version>${cs.servlet.version}</version> | ||||
| 		<scope>provided</scope> | ||||
| </dependency> | ||||
| <dependency> | ||||
|     <groupId>com.googlecode.json-simple</groupId> | ||||
|     <artifactId>json-simple</artifactId> | ||||
|     <version>1.1</version> | ||||
| </dependency> | ||||
| <dependency> | ||||
| <groupId>org.jasypt</groupId> | ||||
| <artifactId>jasypt</artifactId> | ||||
| <version>${cs.jasypt.version}</version> | ||||
| </dependency> | ||||
| 	</dependencies> | ||||
| 	<build> | ||||
| 		<defaultGoal>install</defaultGoal> | ||||
| 		<sourceDirectory>src</sourceDirectory> | ||||
| <!-- | ||||
| 		<testSourceDirectory>test</testSourceDirectory> | ||||
|     <plugins> | ||||
|      <plugin> | ||||
|        <groupId>org.apache.maven.plugins</groupId> | ||||
|        <artifactId>maven-jar-plugin</artifactId> | ||||
|        <version>2.2</version> | ||||
|        <executions> | ||||
|          <execution> | ||||
|            <goals> | ||||
|              <goal>test-jar</goal> | ||||
|            </goals> | ||||
|          </execution> | ||||
|        </executions> | ||||
|      </plugin> | ||||
|     </plugins> | ||||
| --> | ||||
| 	</build> | ||||
| </project> | ||||
| @ -3,12 +3,12 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-console-proxy</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Console Proxy</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| 		<artifactId>cloud-parent</artifactId> | ||||
| 		<version>4.0.0-SNAPSHOT</version> | ||||
| 		<relativePath>../parent/pom.xml</relativePath> | ||||
| 	</parent> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
|  | ||||
| @ -1,8 +1,8 @@ | ||||
| <?xml version="1.0"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-core</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Core</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| @ -42,8 +42,6 @@ | ||||
| 	<build> | ||||
| 		<defaultGoal>install</defaultGoal> | ||||
| 		<sourceDirectory>src</sourceDirectory> | ||||
|     <!-- | ||||
| 		<testSourceDirectory>test</testSourceDirectory> | ||||
|     --> | ||||
| 		<!-- <testSourceDirectory>test</testSourceDirectory> --> | ||||
| 	</build> | ||||
| </project> | ||||
|  | ||||
							
								
								
									
										4
									
								
								deps/XenServerJava/pom.xml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								deps/XenServerJava/pom.xml
									
									
									
									
										vendored
									
									
								
							| @ -1,4 +1,5 @@ | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<parent> | ||||
| 		<artifactId>cloud-parent</artifactId> | ||||
| @ -6,7 +7,6 @@ | ||||
| 		<version>4.0.0-SNAPSHOT</version> | ||||
| 		<relativePath>../../parent/pom.xml</relativePath> | ||||
| 	</parent> | ||||
| 	<groupId>com.cloud</groupId> | ||||
| 	<artifactId>xapi</artifactId> | ||||
| 	<version>5.6.100-1-SNAPSHOT</version> | ||||
| 	<name>XenSource XAPI</name> | ||||
|  | ||||
| @ -1,5 +1,6 @@ | ||||
| <?xml version="1.0"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| 		<artifactId>cloudstack</artifactId> | ||||
| @ -7,9 +8,7 @@ | ||||
| 		<relativePath>../pom.xml</relativePath> | ||||
| 	</parent> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<groupId>com.cloud</groupId> | ||||
| 	<artifactId>cloud-parent</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<packaging>pom</packaging> | ||||
| 	<name>Apache CloudStack Parent</name> | ||||
| 	<description>Apache CloudStack Parent POM</description> | ||||
| @ -38,6 +37,11 @@ | ||||
| 		<cs.xmlrpc.version>3.1.3</cs.xmlrpc.version> | ||||
| 		<cs.mail.version>1.4</cs.mail.version> | ||||
| 		<cs.axis.version>1.4</cs.axis.version> | ||||
| 		<cs.axis2.version>1.5.1</cs.axis2.version> | ||||
| 		<cs.axiom.version>1.2.8</cs.axiom.version> | ||||
| 		<cs.hibernate.version>3.5.1-Final</cs.hibernate.version> | ||||
| 		<cs.neethi.version>2.0.4</cs.neethi.version> | ||||
| 		<cs.servlet.version>2.4</cs.servlet.version> | ||||
| 		<skipTests>true</skipTests> | ||||
| 	</properties> | ||||
| 	<build> | ||||
| @ -46,6 +50,7 @@ | ||||
| 			<plugin> | ||||
| 				<groupId>org.apache.maven.plugins</groupId> | ||||
| 				<artifactId>maven-compiler-plugin</artifactId> | ||||
| 				<version>2.0.2</version> | ||||
| 				<configuration> | ||||
| 					<source>${cs.jdk.version}</source> | ||||
| 					<target>${cs.jdk.version}</target> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-planner-user-concentrated-pod</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - User Concentrated Pod Deployment Planner</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-planner-user-dispersing</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - User Dispersing Deployment Planner</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-netapp</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - NetApp File System</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-host-allocator-random</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Host Allocator Random</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-hypervisor-kvm</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Hypervisor KVM</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-hypervisor-ovm</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Hypervisor OracleVM</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-hypervisor-vmware</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Hypervisor VMware</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-hypervisor-xen</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Hypervisor Xen</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-elb</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Network Elastic Load Balancer</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-f5</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - F5</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-srx</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Juniper SRX</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-midonet</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Midokura Midonet</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-netscaler</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Network Netscaler</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-nvp</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Network Nicira NVP</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-network-ovs</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Open vSwitch</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-parent</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin POM</name> | ||||
| 	<packaging>pom</packaging> | ||||
| 	<parent> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugins</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin POM</name> | ||||
| 	<packaging>pom</packaging> | ||||
| 	<parent> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-storage-allocator-random</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - Storage Allocator Random</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-user-authenticator-ldap</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - User Authenticator LDAP</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-user-authenticator-md5</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - User Authenticator MD5</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-plugin-user-authenticator-plaintext</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Plugin - User Authenticator Plain Text</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
							
								
								
									
										1
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								pom.xml
									
									
									
									
									
								
							| @ -132,6 +132,7 @@ | ||||
| 		<module>deps/XenServerJava</module> | ||||
| 		<module>vmware-base</module> | ||||
| 		<module>plugins</module> | ||||
| 		<module>awsapi</module> | ||||
| 	</modules> | ||||
| 
 | ||||
| 	<build> | ||||
|  | ||||
| @ -1,8 +1,8 @@ | ||||
| <?xml version="1.0"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-server</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Server</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| @ -43,28 +43,15 @@ | ||||
| 			<artifactId>mail</artifactId> | ||||
| 			<version>${cs.mail.version}</version> | ||||
| 		</dependency> | ||||
|     <!-- | ||||
|     <dependency> | ||||
|       <groupId>com.cloud</groupId> | ||||
|       <artifactId>cloud-utils</artifactId> | ||||
|       <version>${project.version}</version> | ||||
|       <classifier>tests</classifier> | ||||
|       <scope>test</scope> | ||||
|     </dependency> | ||||
|     <dependency> | ||||
|       <groupId>com.cloud</groupId> | ||||
|       <artifactId>cloud-agent</artifactId> | ||||
|       <version>${project.version}</version> | ||||
|       <classifier>tests</classifier> | ||||
|       <scope>test</scope> | ||||
|     </dependency> | ||||
|     --> | ||||
| 		<!-- <dependency> <groupId>com.cloud</groupId> <artifactId>cloud-utils</artifactId>  | ||||
| 			<version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope>  | ||||
| 			</dependency> <dependency> <groupId>com.cloud</groupId> <artifactId>cloud-agent</artifactId>  | ||||
| 			<version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope>  | ||||
| 			</dependency> --> | ||||
| 	</dependencies> | ||||
| 	<build> | ||||
| 		<defaultGoal>install</defaultGoal> | ||||
| 		<sourceDirectory>src</sourceDirectory> | ||||
|     <!-- | ||||
|       <testSourceDirectory>test</testSourceDirectory> | ||||
|     --> | ||||
| 		<!-- <testSourceDirectory>test</testSourceDirectory> --> | ||||
| 	</build> | ||||
| </project> | ||||
|  | ||||
| @ -3,12 +3,12 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-usage</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Usage Server</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
| 		<artifactId>cloud-parent</artifactId> | ||||
| 		<version>4.0.0-SNAPSHOT</version> | ||||
| 		<relativePath>../parent/pom.xml</relativePath> | ||||
| 	</parent> | ||||
| 	<dependencies> | ||||
| 		<dependency> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-utils</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack Utils</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
| @ -3,7 +3,6 @@ | ||||
| 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
| 	<modelVersion>4.0.0</modelVersion> | ||||
| 	<artifactId>cloud-vmware-base</artifactId> | ||||
| 	<version>4.0.0-SNAPSHOT</version> | ||||
| 	<name>Apache CloudStack VMware Base</name> | ||||
| 	<parent> | ||||
| 		<groupId>com.cloud</groupId> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user