pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.dataeasy</groupId>
  8. <artifactId>server</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>data-easy</artifactId>
  12. <properties>
  13. <wxjava.version>4.7.0</wxjava.version>
  14. <jwt.version>4.4.0</jwt.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.cloud</groupId>
  19. <artifactId>spring-cloud-starter-openfeign</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-validation</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-aop</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-cache</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.github.ben-manes.caffeine</groupId>
  44. <artifactId>caffeine</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-tx</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.mysql</groupId>
  52. <artifactId>mysql-connector-j</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>tk.mybatis</groupId>
  60. <artifactId>mapper-spring-boot-starter</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.auth0</groupId>
  64. <artifactId>java-jwt</artifactId>
  65. <version>${jwt.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.github.ulisesbocchio</groupId>
  69. <artifactId>jasypt-spring-boot-starter</artifactId>
  70. <version>${jasypt.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.github.binarywang</groupId>
  74. <artifactId>wx-java-mp-spring-boot-starter</artifactId>
  75. <version>${wxjava.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.binarywang</groupId>
  79. <artifactId>weixin-java-pay</artifactId>
  80. <version>${wxjava.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.github.binarywang</groupId>
  84. <artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
  85. <version>${wxjava.version}</version>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-jar-plugin</artifactId>
  93. <configuration>
  94. <archive>
  95. <manifest>
  96. <!-- 项目启动类 -->
  97. <mainClass>com.dataeasy.server.Application</mainClass>
  98. </manifest>
  99. </archive>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>