pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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-device</artifactId>
  7. <groupId>com.xy</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>device-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>device-api</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.xy</groupId>
  25. <artifactId>authorize-api</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.xy</groupId>
  30. <artifactId>order-api</artifactId>
  31. <version>1.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xy</groupId>
  35. <artifactId>goods-api</artifactId>
  36. <version>1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.xy</groupId>
  40. <artifactId>sys-api</artifactId>
  41. <version>1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.xy</groupId>
  45. <artifactId>merc-api</artifactId>
  46. <version>1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.xy</groupId>
  50. <artifactId>msg-api</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.xy</groupId>
  55. <artifactId>mqtt-api</artifactId>
  56. <version>1.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.xy</groupId>
  60. <artifactId>xy-redis</artifactId>
  61. <version>1.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.xy</groupId>
  65. <artifactId>xy-mp</artifactId>
  66. <version>1.0</version>
  67. </dependency>
  68. <!-- web页面 -->
  69. <dependency>
  70. <groupId>com.xy</groupId>
  71. <artifactId>xy-server-web</artifactId>
  72. <version>1.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.xy</groupId>
  76. <artifactId>xy-job</artifactId>
  77. <version>1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.xy</groupId>
  81. <artifactId>sys-sdk</artifactId>
  82. <version>1.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.xy</groupId>
  86. <artifactId>xy-oss</artifactId>
  87. <version>1.0</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.xy</groupId>
  92. <artifactId>xy-enum</artifactId>
  93. <version>1.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.xy</groupId>
  97. <artifactId>xy-algorithm</artifactId>
  98. <version>1.0</version>
  99. <scope>compile</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.xy</groupId>
  103. <artifactId>xy-cloudwalk</artifactId>
  104. <version>1.0</version>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.xy</groupId>
  109. <artifactId>xy-tyai</artifactId>
  110. <version>1.0</version>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.xy</groupId>
  115. <artifactId>xy-magic-api</artifactId>
  116. <version>1.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.xy</groupId>
  120. <artifactId>msg-sdk</artifactId>
  121. <version>1.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.xy</groupId>
  125. <artifactId>merc-sdk</artifactId>
  126. <version>1.0</version>
  127. <scope>compile</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>com.xy</groupId>
  131. <artifactId>xy-sim</artifactId>
  132. <version>1.0</version>
  133. <scope>compile</scope>
  134. </dependency>
  135. </dependencies>
  136. <build>
  137. <resources>
  138. <resource>
  139. <directory>src/main/java</directory>
  140. <includes>
  141. <include>**/*.xml</include>
  142. </includes>
  143. <filtering>true</filtering>
  144. </resource>
  145. <resource>
  146. <directory>src/main/resources</directory>
  147. <includes>
  148. <include>**/*.*</include>
  149. </includes>
  150. <filtering>true</filtering>
  151. </resource>
  152. </resources>
  153. </build>
  154. </project>