pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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>raising</artifactId>
  7. <groupId>com.raising</groupId>
  8. <version>3.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>raising-open-api</artifactId>
  12. <description>
  13. Application接口模块
  14. </description>
  15. <dependencies>
  16. <!--velocity代码生成使用模板 -->
  17. <dependency>
  18. <groupId>org.apache.velocity</groupId>
  19. <artifactId>velocity</artifactId>
  20. </dependency>
  21. <!-- SpringBoot集成thymeleaf模板 -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  25. </dependency>
  26. <!--WebSocket-->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-websocket</artifactId>
  30. <version>${spring-boot-starter-websocket.version}</version>
  31. </dependency>
  32. <!-- 通用工具-->
  33. <dependency>
  34. <groupId>com.raising</groupId>
  35. <artifactId>raising-common</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <!-- 核心模块-->
  39. <dependency>
  40. <groupId>com.raising</groupId>
  41. <artifactId>raising-framework</artifactId>
  42. <version>${project.version}</version>
  43. </dependency>
  44. <!-- raising-core-data模块-->
  45. <dependency>
  46. <groupId>com.raising</groupId>
  47. <artifactId>raising-core-data</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-boot-starter</artifactId>
  53. <version>${mybatisplus.version}</version>
  54. <exclusions>
  55. <exclusion>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-generator</artifactId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!--Linq表达式-->
  62. <dependency>
  63. <groupId>com.bestvike</groupId>
  64. <artifactId>linq</artifactId>
  65. <version>${bestvikelinq.version}</version>
  66. </dependency>
  67. <!--Hutool工具包-->
  68. <dependency>
  69. <groupId>cn.hutool</groupId>
  70. <artifactId>hutool-all</artifactId>
  71. <version>${hutool.version}</version>
  72. </dependency>
  73. <!--JustAuth工具包
  74. https://justauth.wiki/quickstart/explain.html
  75. https://github.com/justauth/JustAuth-->
  76. <dependency>
  77. <groupId>me.zhyd.oauth</groupId>
  78. <artifactId>JustAuth</artifactId>
  79. <version>${justauth.version}</version>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>com.alibaba</groupId>
  83. <artifactId>fastjson</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.github.javen205</groupId>
  89. <artifactId>IJPay-All</artifactId>
  90. <version>${ijpay.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.alipay.sdk</groupId>
  94. <artifactId>alipay-sdk-java</artifactId>
  95. <version>${alipay.version}</version>
  96. <exclusions>
  97. <exclusion>
  98. <artifactId>fastjson</artifactId>
  99. <groupId>com.alibaba</groupId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <!-- 排它锁 -->
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-starter-data-jpa</artifactId>
  107. </dependency>
  108. <!-- 阿里JSON解析器 -->
  109. <dependency>
  110. <groupId>com.alibaba</groupId>
  111. <artifactId>fastjson</artifactId>
  112. <version>${fastjson.version}</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <version>${projectlombok.version}</version>
  118. <optional>true</optional>
  119. </dependency>
  120. <!--RedisTools https://gitee.com/xsxgit/redis-spring-boot-starter -->
  121. <dependency>
  122. <groupId>wiki.xsx</groupId>
  123. <artifactId>redis-spring-boot-starter</artifactId>
  124. <version>${redis-tools-version}</version>
  125. </dependency>
  126. <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
  127. <dependency>
  128. <groupId>cn.dev33</groupId>
  129. <artifactId>sa-token-spring-boot-starter</artifactId>
  130. <version>${sa-token-version}</version>
  131. </dependency>
  132. <!-- BeetlSQL的目标是提供开发高效,维护高效,运行高效的数据库访问框架,
  133. Git仓库: https://gitee.com/xiandafu/beetlsql
  134. 在线文档:https://www.kancloud.cn/xiandafu/beetlsql3_guide/1960060
  135. -->
  136. <dependency>
  137. <groupId>com.ibeetl</groupId>
  138. <artifactId>sql-springboot-starter</artifactId>
  139. <version>${beetlsql.version}</version>
  140. </dependency>
  141. <!--必须使用0.9以上的版本-->
  142. <dependency>
  143. <groupId>com.github.jsqlparser</groupId>
  144. <artifactId>jsqlparser</artifactId>
  145. <version>${jsqlparser.version}</version>
  146. </dependency>
  147. <!-- http://repo1.maven.org/maven2/com/xuxueli/xxl-job-core/ -->
  148. <dependency>
  149. <groupId>com.xuxueli</groupId>
  150. <artifactId>xxl-job-core</artifactId>
  151. <version>${xxljob.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.raising</groupId>
  155. <artifactId>raising-upms</artifactId>
  156. <version>3.0.0</version>
  157. <scope>compile</scope>
  158. </dependency>
  159. </dependencies>
  160. </project>