Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <pluginRepositories>
  2. <pluginRepository>
  3. <id>JBOSS</id>
  4. <name>JBoss Repository</name>
  5. <url>https://repository.jboss.org/nexus/content/groups/public/</url>
  6. </pluginRepository>
  7. </pluginRepositories>
  8.  
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.jboss.jbossas</groupId>
  12. <artifactId>jboss-as-client</artifactId>
  13. <version>6.1.0.Final</version>
  14. <type>pom</type>
  15. <scope>provided</scope>
  16. </dependency>
  17. </dependencies>
  18.  
  19. <build>
  20. <plugins>
  21.  
  22. <plugin>
  23. <groupId>org.jboss.ws.plugins</groupId>
  24. <artifactId>maven-jaxws-tools-plugin</artifactId>
  25. <version>1.1.1.Final</version>
  26. <executions>
  27. <execution>
  28. <id>My execution</id>
  29. <goals>
  30. <goal>wsconsume</goal>
  31. </goals>
  32. <configuration>
  33. <wsdls>
  34. <wsdl>mylocation?wsdl</wsdl>
  35. </wsdls>
  36. <targetPackage>src</targetPackage>
  37. </configuration>
  38. </execution>
  39. </executions>
  40. <dependencies>
  41.  
  42. <dependency>
  43. <groupId>org.jboss.ws.native</groupId>
  44. <artifactId>jbossws-native-client</artifactId>
  45. <version>3.3.1.GA</version>
  46. <type>jar</type>
  47. <scope>compile</scope>
  48. </dependency>
  49.  
  50. <dependency>
  51. <groupId>javax.xml.ws</groupId>
  52. <artifactId>jaxws-api</artifactId>
  53. <version>2.2.1</version>
  54. <type>jar</type>
  55. <scope>compile</scope>
  56. </dependency>
  57.  
  58. <dependency>
  59. <groupId>org.jboss.ws</groupId>
  60. <artifactId>jbossws-spi</artifactId>
  61. <version>3.1.4.Final</version>
  62. <type>jar</type>
  63. <scope>compile</scope>
  64. </dependency>
  65.  
  66. </dependencies>
  67. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement