• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<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">
2    <modelVersion>4.0.0</modelVersion>
3
4    <parent>
5        <groupId>com.google.code.ksoap2-android</groupId>
6        <artifactId>ksoap2-parent</artifactId>
7        <version>3.0.0-RC.2-SNAPSHOT</version>
8    </parent>
9
10    <artifactId>ksoap2-base</artifactId>
11    <name>ksoap2-base</name>
12    <packaging>jar</packaging>
13    <description><![CDATA[
14        A lightweight and efficient SOAP engine suitable for J2ME or constrained java devices.
15        ]]>
16    </description>
17
18    <dependencies>
19        <dependency>
20            <groupId>net.sourceforge.kxml</groupId>
21            <artifactId>kxml</artifactId>
22        </dependency>
23        <dependency>
24            <groupId>net.sourceforge.kobjects</groupId>
25            <artifactId>kobjects-j2me</artifactId>
26        </dependency>
27
28        <dependency>
29            <groupId>junit</groupId>
30            <artifactId>junit</artifactId>
31        </dependency>
32    </dependencies>
33
34    <build>
35        <plugins>
36            <plugin>
37                <groupId>org.apache.maven.plugins</groupId>
38                <artifactId>maven-checkstyle-plugin</artifactId>
39            </plugin>
40            <plugin>
41                <groupId>org.apache.maven.plugins</groupId>
42                <artifactId>maven-jar-plugin</artifactId>
43                <executions>
44                    <execution>
45                        <goals>
46                            <goal>test-jar</goal>
47                        </goals>
48                    </execution>
49                </executions>
50            </plugin>
51        </plugins>
52    </build>
53
54</project>
55