pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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-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>xy-redis</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.xy</groupId>
  55. <artifactId>xy-mp</artifactId>
  56. <version>1.0</version>
  57. </dependency>
  58. <!-- web页面 -->
  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-mqtt</artifactId>
  67. <version>1.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.xy</groupId>
  71. <artifactId>xy-job</artifactId>
  72. <version>1.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.xy</groupId>
  76. <artifactId>sys-sdk</artifactId>
  77. <version>1.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.xy</groupId>
  81. <artifactId>xy-oss</artifactId>
  82. <version>1.0</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. </dependencies>
  86. </project>