pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. <groupId>com.xindazhou</groupId>
  7. <artifactId>xdz-module-message</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>xdz-module-message-server</artifactId>
  12. <packaging>jar</packaging>
  13. <name>${project.artifactId}</name>
  14. <description>message 服务实现</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xindazhou</groupId>
  18. <artifactId>xdz-spring-boot-starter-env</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.xindazhou</groupId>
  22. <artifactId>xdz-module-message-api</artifactId>
  23. <version>${revision}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.xindazhou</groupId>
  27. <artifactId>xdz-spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.xindazhou</groupId>
  31. <artifactId>xdz-spring-boot-starter-security</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xindazhou</groupId>
  35. <artifactId>xdz-spring-boot-starter-mybatis</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.xindazhou</groupId>
  39. <artifactId>xdz-spring-boot-starter-redis</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.xindazhou</groupId>
  43. <artifactId>xdz-spring-boot-starter-rpc</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba.cloud</groupId>
  47. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba.cloud</groupId>
  51. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.xindazhou</groupId>
  55. <artifactId>xdz-spring-boot-starter-mq</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.xindazhou</groupId>
  59. <artifactId>xdz-spring-boot-starter-monitor</artifactId>
  60. </dependency>
  61. <!-- Netty SocketIO -->
  62. <dependency>
  63. <groupId>com.corundumstudio.socketio</groupId>
  64. <artifactId>netty-socketio</artifactId>
  65. </dependency>
  66. <!-- 车辆服务 API(包含消息类) -->
  67. <dependency>
  68. <groupId>com.xindazhou</groupId>
  69. <artifactId>xdz-module-vehicle-api</artifactId>
  70. <version>${revision}</version>
  71. </dependency>
  72. <!-- JWT -->
  73. <dependency>
  74. <groupId>com.auth0</groupId>
  75. <artifactId>java-jwt</artifactId>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <finalName>${project.artifactId}</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>${spring.boot.version}</version>
  85. <executions>
  86. <execution>
  87. <goals>
  88. <goal>repackage</goal>
  89. </goals>
  90. </execution>
  91. </executions>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>