pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>aivfo-business-parent</artifactId>
  6. <groupId>com.aivfo</groupId>
  7. <version>1.2.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>aivfo-gateway</artifactId>
  11. <packaging>pom</packaging>
  12. <version>2.2.2.0-SNAPSHOT</version>
  13. <dependencyManagement>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.aivfo</groupId>
  17. <artifactId>aivfo-gateway-controller</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.aivfo</groupId>
  22. <artifactId>aivfo-gateway-entity</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.aivfo</groupId>
  27. <artifactId>aivfo-gateway-facade</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aivfo</groupId>
  32. <artifactId>aivfo-gateway-manage</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.aivfo</groupId>
  37. <artifactId>aivfo-gateway-mapper</artifactId>
  38. <version>${project.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.aivfo</groupId>
  42. <artifactId>aivfo-gateway-rpc</artifactId>
  43. <version>${project.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.aivfo</groupId>
  47. <artifactId>aivfo-gateway-service</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.aivfo</groupId>
  52. <artifactId>aivfo-gateway-service-impl</artifactId>
  53. <version>${project.version}</version>
  54. </dependency>
  55. </dependencies>
  56. </dependencyManagement>
  57. <modules>
  58. <module>aivfo-gateway-mapper</module>
  59. <module>aivfo-gateway-entity</module>
  60. <module>aivfo-gateway-service</module>
  61. <module>aivfo-gateway-service-impl</module>
  62. <module>aivfo-gateway-manage</module>
  63. <module>aivfo-gateway-controller</module>
  64. <module>aivfo-gateway-lanucher</module>
  65. <module>aivfo-gateway-facade</module>
  66. <module>aivfo-gateway-rpc</module>
  67. </modules>
  68. </project>