pom.xml 5.9 KB

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