<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">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.google.code.ksoap2-android</groupId>
	<artifactId>ksoap2-parent</artifactId>
	<version>2.4</version>
	<packaging>pom</packaging>

	<name>ksoap2-parent</name>
	<description><![CDATA[
		A lightweight and efficient SOAP library for the Android platform.
		]]>
	</description>

	<url>http://code.google.com/p/ksoap2-android/</url>
	<inceptionYear>2002</inceptionYear>

	<scm>
		<connection>scm:git:git://github.com/karlmdavis/ksoap2-android.git
		</connection>
		<developerConnection>scm:git:git@github.com:karlmdavis/ksoap2-android.git
		</developerConnection>
		<url>http://github.com/karlmdavis/ksoap2-android/tree/master</url>
	</scm>

	<issueManagement>
		<system>Google Code</system>
		<url>http://code.google.com/p/ksoap2-android/issues/list</url>
	</issueManagement>

	<modules>
		<module>ksoap2-base</module>
		<module>ksoap2-android</module>
		<module>ksoap2-android-assembly</module>
		<module>ksoap2-extras</module>
		<module>ksoap2-j2se</module>
		<module>ksoap2-midp</module>
		<module>ksoap2-samples</module>
		<module>ksoap2-samples-axis</module>
		<module>ksoap2-servlet</module>
	</modules>

	<distributionManagement>
		<repository>
			<uniqueVersion>false</uniqueVersion>
			<id>googlecode</id>
			<url>svn:https://ksoap2-android.googlecode.com/svn/m2-repo</url>
		</repository>
	</distributionManagement>
	<repositories>
		<repository>
			<id>googlecode-ksoap2-android</id>
			<name>googlecode-ksoap2-android</name>
			<url>http://ksoap2-android.googlecode.com/svn/m2-repo</url>
		</repository>
	</repositories>
	<pluginRepositories>
		<pluginRepository>
			<id>googlecode-ksoap2-android</id>
			<name>googlecode-ksoap2-android</name>
			<url>http://ksoap2-android.googlecode.com/svn/m2-repo</url>
		</pluginRepository>
	</pluginRepositories>

	<profiles>
		<profile>
			<!--
				The "release" profile ensures that the source and javadoc JARs are
				included in deployments
			-->
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar</goal>
									<goal>test-jar</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<executions>
							<execution>
								<id>attach-javadocs</id>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>

	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-base</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-base</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-android</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-android</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-extras</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-extras</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-j2se</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-j2se</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-midp</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-midp</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-samples</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-samples</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>


			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-samples-axis</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-samples-axis</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>


			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-servlet</artifactId>
				<version>${project.version}</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>
			<dependency>
				<groupId>com.google.code.ksoap2-android</groupId>
				<artifactId>ksoap2-servlet</artifactId>
				<version>${project.version}</version>
				<type>test-jar</type>
				<scope>test</scope>
			</dependency>

			<dependency>
				<groupId>net.sourceforge.kxml</groupId>
				<artifactId>kxml</artifactId>
				<version>2.2.4</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>

			<dependency>
				<groupId>net.sourceforge.kobjects</groupId>
				<artifactId>kobjects-j2me</artifactId>
				<version>0.0-SNAPSHOT-20040926-2</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>

			<dependency>
				<groupId>net.sourceforge.me4se</groupId>
				<artifactId>me4se</artifactId>
				<version>2.1.4-SNAPSHOT-20040926</version>
				<type>jar</type>
				<scope>compile</scope>
			</dependency>

			<dependency>
				<groupId>junit</groupId>
				<artifactId>junit</artifactId>
				<version>3.8.1</version>
				<type>jar</type>
				<scope>test</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
	<dependencies>
	</dependencies>

	<build>
		<sourceDirectory>src/main/java</sourceDirectory>
		<testSourceDirectory>src/test/java</testSourceDirectory>
		<resources>
			<resource>
				<filtering>false</filtering>
				<directory>src/main/java</directory>
				<includes>
					<!--
						This override of the defaults is necessary to ensure that *.jdo,
						*.html, etc. files are included in builds and jars.
					-->
					<include>**</include>
				</includes>
				<excludes>
					<exclude>**/*.java</exclude>
				</excludes>
			</resource>
			<resource>
				<directory>src/main/resources</directory>
			</resource>
		</resources>
		<testResources>
			<testResource>
				<directory>src/test/resources</directory>
			</testResource>
		</testResources>
		<extensions>
			<extension>
				<groupId>org.jvnet.wagon-svn</groupId>
				<artifactId>wagon-svn</artifactId>
				<version>1.9</version>
			</extension>
		</extensions>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<configuration>
						<source>1.6</source>
						<target>1.6</target>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-release-plugin</artifactId>
					<version>2.0</version>
					<dependencies>
						<dependency>
							<groupId>org.apache.maven.scm</groupId>
							<artifactId>maven-scm-provider-gitexe</artifactId>
							<version>1.2</version>
						</dependency>
					</dependencies>
					<configuration>
						<autoVersionSubmodules>true</autoVersionSubmodules>
						<!--
							The preparationGoals setting is a workarounf for
							http://jira.codehaus.org/browse/MJAR-68 and
							http://jira.codehaus.org/browse/MRELEASE-285
						-->
						<preparationGoals>clean install</preparationGoals>
						<useReleaseProfile>false</useReleaseProfile>
						<arguments>-Prelease</arguments>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-scm-plugin</artifactId>
					<dependencies>
						<dependency>
							<groupId>org.apache.maven.scm</groupId>
							<artifactId>maven-scm-provider-gitexe</artifactId>
							<version>1.2</version>
						</dependency>
					</dependencies>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
</project>
