pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. <!-- ContiNew Starter 认证模块 - SaToken -->
  52. <dependency>
  53. <groupId>top.continew</groupId>
  54. <artifactId>continew-starter-auth-satoken</artifactId>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-web</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <!-- ContiNew Starter 认证模块 - JustAuth -->
  63. <dependency>
  64. <groupId>top.continew</groupId>
  65. <artifactId>continew-starter-auth-justauth</artifactId>
  66. </dependency>
  67. <!-- ContiNew Starter 缓存模块 - JetCache -->
  68. <dependency>
  69. <groupId>top.continew</groupId>
  70. <artifactId>continew-starter-cache-jetcache</artifactId>
  71. </dependency>
  72. <!-- ContiNew Starter 数据权限模块 - MyBatis Plus -->
  73. <dependency>
  74. <groupId>top.continew</groupId>
  75. <artifactId>continew-starter-extension-datapermission-mp</artifactId>
  76. </dependency>
  77. <!-- ContiNew Starter 消息模块 - WebSocket -->
  78. <dependency>
  79. <groupId>top.continew</groupId>
  80. <artifactId>continew-starter-messaging-websocket</artifactId>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-starter-web</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <!-- ContiNew Starter 消息模块 - 邮件 -->
  89. <dependency>
  90. <groupId>top.continew</groupId>
  91. <artifactId>continew-starter-messaging-mail</artifactId>
  92. </dependency>
  93. <!-- ContiNew Starter 验证码模块 - 图形验证码 -->
  94. <dependency>
  95. <groupId>top.continew</groupId>
  96. <artifactId>continew-starter-captcha-graphic</artifactId>
  97. </dependency>
  98. <!-- ContiNew Starter 验证码模块 - 行为验证码 -->
  99. <dependency>
  100. <groupId>top.continew</groupId>
  101. <artifactId>continew-starter-captcha-behavior</artifactId>
  102. </dependency>
  103. <!-- ContiNew Starter 限流模块 -->
  104. <dependency>
  105. <groupId>top.continew</groupId>
  106. <artifactId>continew-starter-ratelimiter</artifactId>
  107. </dependency>
  108. <!-- ContiNew Starter 安全模块 - 加密 -->
  109. <dependency>
  110. <groupId>top.continew</groupId>
  111. <artifactId>continew-starter-security-crypto</artifactId>
  112. </dependency>
  113. <!-- ContiNew Starter 安全模块 - 脱敏 -->
  114. <dependency>
  115. <groupId>top.continew</groupId>
  116. <artifactId>continew-starter-security-mask</artifactId>
  117. </dependency>
  118. <!-- ContiNew Starter 安全模块 - 密码编码器 -->
  119. <dependency>
  120. <groupId>top.continew</groupId>
  121. <artifactId>continew-starter-security-password</artifactId>
  122. </dependency>
  123. <!-- ContiNew Starter JSON 模块 - Jackson -->
  124. <dependency>
  125. <groupId>top.continew</groupId>
  126. <artifactId>continew-starter-json-jackson</artifactId>
  127. </dependency>
  128. </dependencies>
  129. </project>