pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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.5.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.aijia</groupId>
  12. <artifactId>peixun</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>peixun</name>
  15. <description>Demo 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-thymeleaf</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.mybatis.spring.boot</groupId>
  30. <artifactId>mybatis-spring-boot-starter</artifactId>
  31. <version>2.2.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <scope>runtime</scope>
  37. <version>8.0.15</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.aliyun</groupId>
  41. <artifactId>aliyun-java-sdk-core</artifactId>
  42. <version>4.0.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.aliyun</groupId>
  46. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  47. <version>1.1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alipay.sdk</groupId>
  51. <artifactId>alipay-sdk-java</artifactId>
  52. <version>3.6.0.ALL</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-lang3</artifactId>
  57. <version>3.12.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>redis.clients</groupId>
  61. <artifactId>jedis</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.shiro</groupId>
  65. <artifactId>shiro-spring</artifactId>
  66. <version>1.4.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>de.knightsoft-net</groupId>
  70. <artifactId>gwt-time-dummy</artifactId>
  71. <version>1.7.6</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>1.2.47</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-io</groupId>
  80. <artifactId>commons-io</artifactId>
  81. <version>2.10.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.httpcomponents</groupId>
  85. <artifactId>httpclient</artifactId>
  86. <version>4.5.2</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.sun.jersey.contribs</groupId>
  90. <artifactId>jersey-multipart</artifactId>
  91. <version>1.17</version>
  92. </dependency>
  93. <!-- <dependency>-->
  94. <!-- <groupId>org.springframework.boot</groupId>-->
  95. <!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
  96. <!-- </dependency>-->
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-starter-test</artifactId>
  100. <scope>test</scope>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <plugins>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.mybatis.generator</groupId>
  111. <artifactId>mybatis-generator-maven-plugin</artifactId>
  112. <version>1.4.0</version>
  113. <configuration>
  114. <verbose>true</verbose>
  115. <overwrite>true</overwrite>
  116. <configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
  117. </configuration>
  118. <dependencies>
  119. <dependency>
  120. <groupId>mysql</groupId>
  121. <artifactId>mysql-connector-java</artifactId>
  122. <version>8.0.15</version>
  123. </dependency>
  124. </dependencies>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. </project>