pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.6</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.chuanghai</groupId>
  12. <artifactId>active_record</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>active_record</name>
  15. <description>Active_record project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. <scope>runtime</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.alibaba</groupId>-->
  41. <!-- <artifactId>fastjson</artifactId>-->
  42. <!-- <version>1.2.4</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.57</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>junit</groupId>
  51. <artifactId>junit</artifactId>
  52. <version>4.13.2</version>
  53. </dependency>
  54. <!-- java后端数据校验-->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-validation</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>io.swagger</groupId>
  61. <artifactId>swagger-annotations</artifactId>
  62. <version>1.5.21</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.poi</groupId>
  66. <artifactId>poi-ooxml</artifactId>
  67. <version>3.15</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.auth0</groupId>
  71. <artifactId>java-jwt</artifactId>
  72. <version>3.8.2</version>
  73. </dependency>
  74. <!-- StringUtils工具包-->
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>3.12.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework</groupId>
  82. <artifactId>spring-tx</artifactId>
  83. <version>5.3.16</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>cn.hutool</groupId>
  87. <artifactId>hutool-all</artifactId>
  88. <version>5.1.0</version>
  89. </dependency>
  90. <!-- 引入mybatis-plus依赖 主从数据库-->
  91. <dependency>
  92. <groupId>com.baomidou</groupId>
  93. <artifactId>mybatis-plus-boot-starter</artifactId>
  94. <version>3.5.1</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.baomidou</groupId>
  98. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  99. <version>3.0.0</version>
  100. </dependency>
  101. <!-- 引入阿里巴巴druid-->
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid</artifactId>
  105. <version>1.1.16</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.httpcomponents</groupId>
  109. <artifactId>httpclient</artifactId>
  110. <version>4.5.13</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.mybatis.spring.boot</groupId>
  114. <artifactId>mybatis-spring-boot-starter</artifactId>
  115. <version>2.1.2</version>
  116. </dependency>
  117. <!-- 集成easypoi组件 .导出excel http://easypoi.mydoc.io/ -->
  118. <dependency>
  119. <groupId>cn.afterturn</groupId>
  120. <artifactId>easypoi-base</artifactId>
  121. <version>3.2.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>cn.afterturn</groupId>
  125. <artifactId>easypoi-web</artifactId>
  126. <version>3.2.0</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>cn.afterturn</groupId>
  130. <artifactId>easypoi-annotation</artifactId>
  131. <version>3.2.0</version>
  132. </dependency>
  133. <!-- 用于执行python脚本-->
  134. <dependency>
  135. <groupId>org.python</groupId>
  136. <artifactId>jython-standalone</artifactId>
  137. <version>2.7.2</version>
  138. </dependency>
  139. </dependencies>
  140. <build>
  141. <plugins>
  142. <plugin>
  143. <groupId>org.springframework.boot</groupId>
  144. <artifactId>spring-boot-maven-plugin</artifactId>
  145. <configuration>
  146. <excludes>
  147. <exclude>
  148. <groupId>org.projectlombok</groupId>
  149. <artifactId>lombok</artifactId>
  150. </exclude>
  151. </excludes>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </build>
  156. </project>