Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>i.easy</groupId>
  5.     <artifactId>iJBossWS</artifactId>
  6.     <version>0.0.1-SNAPSHOT</version>
  7.     <packaging>war</packaging>
  8.     <dependencies>
  9.         <dependency>
  10.             <groupId>org.apache.cxf</groupId>
  11.             <artifactId>cxf-api</artifactId>
  12.             <version>2.3.2</version>
  13.             <scope>runtime</scope>
  14.         </dependency>
  15.         <dependency>
  16.             <groupId>org.apache.cxf</groupId>
  17.             <artifactId>cxf-rt-frontend-simple</artifactId>
  18.             <version>2.3.2</version>
  19.             <scope>runtime</scope>
  20.         </dependency>
  21.         <dependency>
  22.             <groupId>com.sun.xml.ws</groupId>
  23.             <artifactId>jaxws-rt</artifactId>
  24.             <version>2.2</version>
  25.             <scope>runtime</scope>
  26.         </dependency>
  27.        
  28.         <!-- <dependency> <groupId>org.jboss.ws.cxf</groupId> <artifactId>jbossws-cxf-client</artifactId>
  29.             <version>3.2.2.GA</version> <scope>runtime</scope> </dependency> -->
  30.            
  31.         <dependency>
  32.             <groupId>org.jboss.resteasy</groupId>
  33.             <artifactId>resteasy-jaxrs</artifactId>
  34.             <version>1.2.1.GA</version>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>junit</groupId>
  38.             <artifactId>junit</artifactId>
  39.             <version>4.0</version>
  40.         </dependency>
  41.     </dependencies>
  42.     <build>
  43.         <plugins>
  44.             <plugin>
  45.                 <groupId>org.apache.maven.plugins</groupId>
  46.                 <artifactId>maven-compiler-plugin</artifactId>
  47.                 <configuration>
  48.                     <source>1.5</source>
  49.                     <target>1.5</target>
  50.                 </configuration>
  51.             </plugin>
  52.         </plugins>
  53.     </build>
  54.  
  55. </project>