pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>xy-sys</artifactId>
  7. <groupId>com.xy</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sys-api-service</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.8</maven.compiler.source>
  15. <maven.compiler.target>1.8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.xy</groupId>
  20. <artifactId>sys-api</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <!-- 合并消息服务 -->
  24. <dependency>
  25. <groupId>com.xy</groupId>
  26. <artifactId>msg-api-service</artifactId>
  27. <version>1.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.xy</groupId>
  31. <artifactId>sys-sdk</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.xy</groupId>
  36. <artifactId>authorize-api</artifactId>
  37. <version>1.0</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.xy</groupId>
  41. <artifactId>goods-api</artifactId>
  42. <version>1.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.xy</groupId>
  46. <artifactId>xy-redis</artifactId>
  47. <version>1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.xy</groupId>
  51. <artifactId>xy-mp</artifactId>
  52. <version>1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.xy</groupId>
  56. <artifactId>authorize-sdk</artifactId>
  57. <version>1.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.xy</groupId>
  61. <artifactId>xy-server-web</artifactId>
  62. <version>1.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.xy</groupId>
  66. <artifactId>xy-oss</artifactId>
  67. <version>1.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.xy</groupId>
  71. <artifactId>xy-excel</artifactId>
  72. <version>1.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.xy</groupId>
  76. <artifactId>xy-es</artifactId>
  77. <version>1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.xy</groupId>
  81. <artifactId>xy-job</artifactId>
  82. <version>1.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.xy</groupId>
  86. <artifactId>xy-enum</artifactId>
  87. <version>1.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.xy</groupId>
  91. <artifactId>xy-alipay</artifactId>
  92. <version>1.0</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.xy</groupId>
  96. <artifactId>mqtt-api</artifactId>
  97. <version>1.0</version>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <resources>
  102. <resource>
  103. <directory>src/main/java</directory>
  104. <includes>
  105. <include>**/*.xml</include>
  106. </includes>
  107. <filtering>true</filtering>
  108. </resource>
  109. <resource>
  110. <directory>src/main/resources</directory>
  111. <includes>
  112. <include>**/*.*</include>
  113. </includes>
  114. <filtering>true</filtering>
  115. </resource>
  116. </resources>
  117. </build>
  118. </project>