pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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 http://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.1.6.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.izouma</groupId>
  12. <artifactId>walk-china</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>walk-china</name>
  15. <description>walk-china</description>
  16. <packaging>jar</packaging>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <skipTests>true</skipTests>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-security</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-jpa</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. <scope>runtime</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-pool2</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-devtools</artifactId>
  55. <optional>true</optional>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-configuration-processor</artifactId>
  60. <optional>true</optional>
  61. </dependency>
  62. <dependency>
  63. <groupId>io.jsonwebtoken</groupId>
  64. <artifactId>jjwt</artifactId>
  65. <version>0.9.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.binarywang</groupId>
  69. <artifactId>weixin-java-miniapp</artifactId>
  70. <version>3.4.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.github.binarywang</groupId>
  74. <artifactId>weixin-java-mp</artifactId>
  75. <version>3.4.0</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.binarywang</groupId>
  79. <artifactId>weixin-java-pay</artifactId>
  80. <version>3.4.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.binarywang</groupId>
  84. <artifactId>weixin-java-open</artifactId>
  85. <version>3.4.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.aliyun.oss</groupId>
  89. <artifactId>aliyun-sdk-oss</artifactId>
  90. <version>2.8.3</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.github.kevinsawicki</groupId>
  94. <artifactId>http-request</artifactId>
  95. <version>6.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>joda-time</groupId>
  99. <artifactId>joda-time</artifactId>
  100. <version>2.10.3</version>
  101. </dependency>
  102. <!--test dependency-->
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-test</artifactId>
  106. <scope>test</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.security</groupId>
  110. <artifactId>spring-security-test</artifactId>
  111. <scope>test</scope>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-maven-plugin</artifactId>
  119. <configuration>
  120. <executable>true</executable>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>