pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.pavis</groupId>
  6. <artifactId>pavis-admin</artifactId>
  7. <version>${revision}</version>
  8. </parent>
  9. <artifactId>pavis-common</artifactId>
  10. <description>公共模块(存放公共工具类,公共配置等)</description>
  11. <dependencies>
  12. <!-- CosId(通用、灵活、高性能的分布式 ID 生成器) -->
  13. <dependency>
  14. <groupId>me.ahoo.cosid</groupId>
  15. <artifactId>cosid-spring-boot-starter</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>me.ahoo.cosid</groupId>
  19. <artifactId>cosid-spring-redis</artifactId>
  20. </dependency>
  21. <!-- X File Storage(一行代码将文件存储到本地、FTP、SFTP、WebDAV、阿里云 OSS、华为云 OBS...等其它兼容 S3 协议的存储平台) -->
  22. <dependency>
  23. <groupId>org.dromara.x-file-storage</groupId>
  24. <artifactId>x-file-storage-spring</artifactId>
  25. </dependency>
  26. <!-- Amazon S3(Amazon Simple Storage Service,亚马逊简单存储服务,通用存储协议 S3,兼容主流云厂商对象存储) -->
  27. <dependency>
  28. <groupId>com.amazonaws</groupId>
  29. <artifactId>aws-java-sdk-s3</artifactId>
  30. </dependency>
  31. <!-- FreeMarker(模板引擎) -->
  32. <dependency>
  33. <groupId>org.freemarker</groupId>
  34. <artifactId>freemarker</artifactId>
  35. </dependency>
  36. <!-- MySQL Java 驱动 -->
  37. <dependency>
  38. <groupId>com.mysql</groupId>
  39. <artifactId>mysql-connector-j</artifactId>
  40. </dependency>
  41. <!-- PostgreSQL Java 驱动 -->
  42. <!--<dependency>
  43. <groupId>org.postgresql</groupId>
  44. <artifactId>postgresql</artifactId>
  45. </dependency>-->
  46. <!-- ContiNew Starter 扩展模块 - CURD(增删改查) -->
  47. <dependency>
  48. <groupId>top.continew</groupId>
  49. <artifactId>continew-starter-extension-crud-mp</artifactId>
  50. </dependency>
  51. <!-- <dependency>-->
  52. <!-- <groupId>cn.dev33</groupId>-->
  53. <!-- <artifactId>sa-token-reactor-spring-boot-starter</artifactId>-->
  54. <!-- <version>1.42.0</version>-->
  55. <!-- </dependency>-->
  56. <!-- <dependency>-->
  57. <!-- <groupId>cn.dev33</groupId>-->
  58. <!-- <artifactId>sa-token-spring-boot3-starter</artifactId>-->
  59. <!-- <version>1.37.0</version>-->
  60. <!-- </dependency>-->
  61. <!-- ContiNew Starter 认证模块 - SaToken -->
  62. <dependency>
  63. <groupId>top.continew</groupId>
  64. <artifactId>continew-starter-auth-satoken</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-web</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>cn.dev33</groupId>
  72. <artifactId>sa-token-spring-boot3-starter</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. <!-- ContiNew Starter 认证模块 - JustAuth -->
  77. <dependency>
  78. <groupId>top.continew</groupId>
  79. <artifactId>continew-starter-auth-justauth</artifactId>
  80. </dependency>
  81. <!-- ContiNew Starter 缓存模块 - JetCache -->
  82. <dependency>
  83. <groupId>top.continew</groupId>
  84. <artifactId>continew-starter-cache-jetcache</artifactId>
  85. </dependency>
  86. <!-- ContiNew Starter 数据权限模块 - MyBatis Plus -->
  87. <dependency>
  88. <groupId>top.continew</groupId>
  89. <artifactId>continew-starter-extension-datapermission-mp</artifactId>
  90. </dependency>
  91. <!-- ContiNew Starter 消息模块 - WebSocket -->
  92. <dependency>
  93. <groupId>top.continew</groupId>
  94. <artifactId>continew-starter-messaging-websocket</artifactId>
  95. <exclusions>
  96. <exclusion>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-starter-web</artifactId>
  99. </exclusion>
  100. </exclusions>
  101. </dependency>
  102. <!-- ContiNew Starter 消息模块 - 邮件 -->
  103. <dependency>
  104. <groupId>top.continew</groupId>
  105. <artifactId>continew-starter-messaging-mail</artifactId>
  106. </dependency>
  107. <!-- ContiNew Starter 验证码模块 - 图形验证码 -->
  108. <dependency>
  109. <groupId>top.continew</groupId>
  110. <artifactId>continew-starter-captcha-graphic</artifactId>
  111. </dependency>
  112. <!-- ContiNew Starter 验证码模块 - 行为验证码 -->
  113. <dependency>
  114. <groupId>top.continew</groupId>
  115. <artifactId>continew-starter-captcha-behavior</artifactId>
  116. </dependency>
  117. <!-- ContiNew Starter 限流模块 -->
  118. <dependency>
  119. <groupId>top.continew</groupId>
  120. <artifactId>continew-starter-ratelimiter</artifactId>
  121. </dependency>
  122. <!-- ContiNew Starter 安全模块 - 加密 -->
  123. <dependency>
  124. <groupId>top.continew</groupId>
  125. <artifactId>continew-starter-security-crypto</artifactId>
  126. </dependency>
  127. <!-- ContiNew Starter 安全模块 - 脱敏 -->
  128. <dependency>
  129. <groupId>top.continew</groupId>
  130. <artifactId>continew-starter-security-mask</artifactId>
  131. </dependency>
  132. <!-- ContiNew Starter 安全模块 - 密码编码器 -->
  133. <dependency>
  134. <groupId>top.continew</groupId>
  135. <artifactId>continew-starter-security-password</artifactId>
  136. </dependency>
  137. <!-- ContiNew Starter JSON 模块 - Jackson -->
  138. <dependency>
  139. <groupId>top.continew</groupId>
  140. <artifactId>continew-starter-json-jackson</artifactId>
  141. </dependency>
  142. </dependencies>
  143. </project>