You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.7 KiB
54 lines
1.7 KiB
<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>
|
|
|