pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>ipp-tl</artifactId>
  7. <groupId>com.jiayue</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modules>
  11. <module>ipp-common-core</module>
  12. <module>ipp-common-data</module>
  13. <module>ipp-common-mybatis</module>
  14. <module>ipp-common-security</module>
  15. </modules>
  16. <artifactId>ipp-common</artifactId>
  17. <packaging>pom</packaging>
  18. <properties>
  19. <maven.compiler.source>1.8</maven.compiler.source>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. </properties>
  22. <dependencies>
  23. <!-- &lt;!&ndash;必备:安全模块&ndash;&gt;-->
  24. <!-- <dependency>-->
  25. <!-- <groupId>com.jiayue</groupId>-->
  26. <!-- <artifactId>csc-common-security</artifactId>-->
  27. <!-- </dependency>-->
  28. <dependency>
  29. <groupId>com.fasterxml.jackson.core</groupId>
  30. <artifactId>jackson-databind</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-security</artifactId>
  35. </dependency>
  36. <!-- &lt;!&ndash;必备:日志处理&ndash;&gt;-->
  37. <!-- <dependency>-->
  38. <!-- <groupId>com.jiayue</groupId>-->
  39. <!-- <artifactId>csc-common-log</artifactId>-->
  40. <!-- </dependency>-->
  41. <!-- &lt;!&ndash;必备:swagger&ndash;&gt;-->
  42. <!-- <dependency>-->
  43. <!-- <groupId>com.jiayue</groupId>-->
  44. <!-- <artifactId>csc-common-swagger</artifactId>-->
  45. <!-- </dependency>-->
  46. <!-- &lt;!&ndash;必备: 注册中心客户端&ndash;&gt;-->
  47. <!-- <dependency>-->
  48. <!-- <groupId>com.alibaba.cloud</groupId>-->
  49. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  50. <!-- </dependency>-->
  51. <!-- &lt;!&ndash;必备: 配置中心客户端&ndash;&gt;-->
  52. <!-- <dependency>-->
  53. <!-- <groupId>com.alibaba.cloud</groupId>-->
  54. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
  55. <!-- </dependency>-->
  56. <!--必备:undertow容器-->
  57. <!-- <dependency>-->
  58. <!-- <groupId>org.springframework.boot</groupId>-->
  59. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  60. <!-- </dependency>-->
  61. <!-- <dependency>-->
  62. <!-- <groupId>com.alibaba</groupId>-->
  63. <!-- <artifactId>druid</artifactId>-->
  64. <!-- <version>1.1.18</version>-->
  65. <!-- </dependency>-->
  66. <!-- <dependency>-->
  67. <!-- <groupId>junit</groupId>-->
  68. <!-- <artifactId>junit</artifactId>-->
  69. <!-- <scope>test</scope>-->
  70. <!-- </dependency>-->
  71. <!--hutool-->
  72. <dependency>
  73. <groupId>cn.hutool</groupId>
  74. <artifactId>hutool-all</artifactId>
  75. <version>${hutool.version}</version>
  76. </dependency>
  77. <!--server-api-->
  78. <dependency>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>javax.servlet-api</artifactId>
  81. </dependency>
  82. <!--TTL-->
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>transmittable-thread-local</artifactId>
  86. <version>${ttl.version}</version>
  87. </dependency>
  88. <!--swagger 依赖-->
  89. <dependency>
  90. <groupId>io.swagger</groupId>
  91. <artifactId>swagger-annotations</artifactId>
  92. <version>${swagger.core.version}</version>
  93. </dependency>
  94. <!-- JWT -->
  95. <dependency>
  96. <groupId>com.auth0</groupId>
  97. <artifactId>java-jwt</artifactId>
  98. <version>${javajwt.version}</version>
  99. </dependency>
  100. <!-- base64加密 -->
  101. <dependency>
  102. <groupId>commons-codec</groupId>
  103. <artifactId>commons-codec</artifactId>
  104. <version>1.13</version>
  105. </dependency>
  106. <!--任务调度-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>org.quartz-scheduler</groupId>-->
  109. <!-- <artifactId>quartz</artifactId>-->
  110. <!-- <version>${quartz.version}</version>-->
  111. <!-- <exclusions>-->
  112. <!-- <exclusion>-->
  113. <!-- <artifactId>slf4j// @ApiModelProperty</artifactId>-->
  114. <!-- <groupId>org.slf4j</groupId>-->
  115. <!-- </exclusion>-->
  116. <!-- </exclusions>-->
  117. <!-- </dependency>-->
  118. </dependencies>
  119. </project>