pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?xml version="1.0" encoding="UTF-8"?>
  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. <groupId>com.serbia</groupId>
  6. <artifactId>Serbia</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>application-webadmin</artifactId>
  11. <version>1.0.0</version>
  12. <name>application-webadmin</name>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- 业务组件依赖 -->
  16. <dependency>
  17. <groupId>com.serbia</groupId>
  18. <artifactId>common-satoken</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.serbia</groupId>
  23. <artifactId>common-ext</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.serbia</groupId>
  28. <artifactId>common-redis</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.serbia</groupId>
  33. <artifactId>common-mobile</artifactId>
  34. <version>1.0.0</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.serbia</groupId>
  38. <artifactId>common-report</artifactId>
  39. <version>1.0.0</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.serbia</groupId>
  43. <artifactId>common-online</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.serbia</groupId>
  48. <artifactId>common-flow-online</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.serbia</groupId>
  53. <artifactId>common-log</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.serbia</groupId>
  58. <artifactId>common-huaweicloud-obs</artifactId>
  59. <version>1.0.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.serbia</groupId>
  63. <artifactId>common-sequence</artifactId>
  64. <version>1.0.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.serbia</groupId>
  68. <artifactId>common-datafilter</artifactId>
  69. <version>1.0.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.serbia</groupId>
  73. <artifactId>common-swagger</artifactId>
  74. <version>1.0.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.serbia</groupId>
  78. <artifactId>common-dict</artifactId>
  79. <version>1.0.0</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.github.binarywang</groupId>
  83. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId> <!-- 微信登录(小程序) -->
  84. <version>4.6.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-websocket</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-amqp</artifactId>
  93. </dependency>
  94. </dependencies>
  95. <build>
  96. <plugins>
  97. <plugin>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-maven-plugin</artifactId>
  100. <version>${spring-boot.version}</version>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. </project>