Home | History | Annotate | Download | only in ksoap2-j2se
      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-j2se</artifactId>
     11     <name>ksoap2-j2se</name>
     12     <packaging>jar</packaging>
     13     <description><![CDATA[
     14         Addons to the ksoap2 library for the J2SE platform.
     15         ]]>
     16     </description>
     17 
     18     <dependencies>
     19         <dependency>
     20             <groupId>com.google.code.ksoap2-android</groupId>
     21             <artifactId>ksoap2-base</artifactId>
     22         </dependency>
     23         <dependency>
     24             <groupId>com.google.code.ksoap2-android</groupId>
     25             <artifactId>ksoap2-base</artifactId>
     26             <type>test-jar</type>
     27             <scope>test</scope>
     28         </dependency>
     29 
     30         <dependency>
     31             <groupId>junit</groupId>
     32             <artifactId>junit</artifactId>
     33         </dependency>
     34     </dependencies>
     35 
     36     <build>
     37         <plugins>
     38             <plugin>
     39                 <groupId>org.apache.maven.plugins</groupId>
     40                 <artifactId>maven-checkstyle-plugin</artifactId>
     41             </plugin>
     42             <plugin>
     43                 <groupId>org.apache.maven.plugins</groupId>
     44                 <artifactId>maven-jar-plugin</artifactId>
     45                 <executions>
     46                     <execution>
     47                         <goals>
     48                             <goal>test-jar</goal>
     49                         </goals>
     50                     </execution>
     51                 </executions>
     52             </plugin>
     53         </plugins>
     54     </build>
     55 
     56 </project>
     57