pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>fiveep</artifactId>
  5. <groupId>com.bizmatics</groupId>
  6. <version>0.0.1</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>fiveep-service</artifactId>
  10. <name>fiveep-service</name>
  11. <version>0.0.1</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.apache.commons</groupId>
  15. <artifactId>commons-csv</artifactId>
  16. <version>1.4</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.commons</groupId>
  20. <artifactId>commons-text</artifactId>
  21. <version>1.9</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-cache</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-configuration-processor</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-data-redis</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.bizmatics</groupId>
  37. <artifactId>fiveep-persistence</artifactId>
  38. <version>0.0.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>redis.clients</groupId>
  42. <artifactId>jedis</artifactId>
  43. <version>2.9.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.baomidou</groupId>
  52. <artifactId>mybatis-plus-core</artifactId>
  53. <version>3.3.2</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.afterturn</groupId>
  57. <artifactId>easypoi-spring-boot-starter</artifactId>
  58. <version>4.1.0</version>
  59. </dependency>
  60. <!-- spring security 安全认证 -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-security</artifactId>
  64. </dependency>
  65. <!-- 解析客户端操作系统、浏览器等 -->
  66. <dependency>
  67. <groupId>eu.bitwalker</groupId>
  68. <artifactId>UserAgentUtils</artifactId>
  69. <version>1.21</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.pagehelper</groupId>
  73. <artifactId>pagehelper-spring-boot-starter</artifactId>
  74. <version>1.3.1</version>
  75. </dependency>
  76. <!-- 验证码 -->
  77. <dependency>
  78. <groupId>com.github.penggle</groupId>
  79. <artifactId>kaptcha</artifactId>
  80. <exclusions>
  81. <exclusion>
  82. <artifactId>javax.servlet-api</artifactId>
  83. <groupId>javax.servlet</groupId>
  84. </exclusion>
  85. </exclusions>
  86. <version>2.3.2</version>
  87. </dependency>
  88. </dependencies>
  89. </project>