blob: d4fafcfda9e6cf85d33ad70f6c32d23e4a04c5c0 [file] [log] [blame]
<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>
<parent>
<groupId>com.google.code.ksoap2-android</groupId>
<artifactId>ksoap2-parent</artifactId>
<version>3.0.0-RC.2-SNAPSHOT</version>
</parent>
<artifactId>ksoap2-base</artifactId>
<name>ksoap2-base</name>
<packaging>jar</packaging>
<description><![CDATA[
A lightweight and efficient SOAP engine suitable for J2ME or constrained java devices.
]]>
</description>
<dependencies>
<dependency>
<groupId>net.sourceforge.kxml</groupId>
<artifactId>kxml</artifactId>
</dependency>
<dependency>
<groupId>net.sourceforge.kobjects</groupId>
<artifactId>kobjects-j2me</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>