pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <parent>
  6. <groupId>com.taais</groupId>
  7. <artifactId>taais-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>taais-common-web</artifactId>
  12. <description>
  13. taais-common-web web服务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.taais</groupId>
  18. <artifactId>taais-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.taais</groupId>
  22. <artifactId>taais-common-json</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.taais</groupId>
  26. <artifactId>taais-common-orm</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.taais</groupId>
  30. <artifactId>taais-common-redis</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.taais</groupId>
  34. <artifactId>taais-common-security</artifactId>
  35. </dependency>
  36. <!-- SpringBoot Web容器 -->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. <!-- <exclusions>-->
  41. <!-- <exclusion>-->
  42. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  43. <!-- <groupId>org.springframework.boot</groupId>-->
  44. <!-- </exclusion>-->
  45. <!-- </exclusions>-->
  46. </dependency>
  47. <!-- web 容器使用 undertow 性能更强 -->
  48. <!-- <dependency>-->
  49. <!-- <groupId>org.springframework.boot</groupId>-->
  50. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  51. <!-- </dependency>-->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-actuator</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-captcha</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.hutool</groupId>
  62. <artifactId>hutool-crypto</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba</groupId>
  66. <artifactId>transmittable-thread-local</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>