Guest User

Untitled

a guest
Jan 21st, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.codehaus.mojo</groupId>
  3. <artifactId>axistools-maven-plugin</artifactId>
  4. <version>1.4</version>
  5. <configuration>
  6. <sourceDirectory>src/main/resources</sourceDirectory>
  7. <outputDirectory>${project.build.directory}/generated/rpc</outputDirectory>
  8. <packageSpace>com.company.wsdl</packageSpace>
  9. <testCases>false</testCases>
  10. <serverSide>true</serverSide>
  11. <subPackageByFileName>false</subPackageByFileName>
  12. </configuration>
  13. <executions>
  14. <execution>
  15. <goals>
  16. <goal>wsdl2java</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. </plugin>
  21.  
  22. <build>
  23. <plugins>
  24. <plugin>
  25. <groupId>org.codehaus.mojo</groupId>
  26. <artifactId>axistools-maven-plugin</artifactId>
  27. <version>1.4</version>
  28. <configuration>
  29. ..
  30. </configuration>
  31. <executions>
  32. <execution>
  33. <goals>
  34. <goal>wsdl2java</goal>
  35. </goals>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. </plugins>
  40. ...
  41. </build>
  42.  
  43. <build>
  44. <pluginManagement>
  45. <plugins>
  46. ...
  47. </plugins>
  48. </pluginManagement>
  49. ...
  50. </build>
Add Comment
Please, Sign In to add comment