pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. <groupId>com.wteam</groupId>
  6. <artifactId>client-api</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>client-api</name>
  9. <description>client-api</description>
  10. <packaging>jar</packaging>
  11. <parent>
  12. <groupId>com.wteam.spring</groupId>
  13. <artifactId>spring</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <relativePath>../pom.xml</relativePath>
  16. </parent>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  21. <spring-boot.version>2.3.7.RELEASE</spring-boot.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-configuration-processor</artifactId>
  27. <optional>true</optional>
  28. </dependency>
  29. <!-- 微信支付V3 目前新版本-->
  30. <dependency>
  31. <groupId>com.github.wechatpay-apiv3</groupId>
  32. <artifactId>wechatpay-apache-httpclient</artifactId>
  33. <version>0.4.7</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>redis.clients</groupId>
  37. <artifactId>jedis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.wteam</groupId>
  41. <artifactId>framework</artifactId>
  42. <version>0.0.1-SNAPSHOT</version>
  43. <scope>compile</scope>
  44. </dependency>
  45. </dependencies>
  46. <!-- <build>-->
  47. <!-- <plugins>-->
  48. <!-- <plugin>-->
  49. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  50. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  51. <!-- <version>3.8.1</version>-->
  52. <!-- <configuration>-->
  53. <!-- <source>1.8</source>-->
  54. <!-- <target>1.8</target>-->
  55. <!-- <encoding>UTF-8</encoding>-->
  56. <!-- </configuration>-->
  57. <!-- </plugin>-->
  58. <!-- <plugin>-->
  59. <!-- <groupId>org.springframework.boot</groupId>-->
  60. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  61. <!-- <version>2.3.7.RELEASE</version>-->
  62. <!-- <configuration>-->
  63. <!-- <mainClass>com.wteam.ClientApiApplication</mainClass>-->
  64. <!-- </configuration>-->
  65. <!-- <executions>-->
  66. <!-- <execution>-->
  67. <!-- <id>repackage</id>-->
  68. <!-- <goals>-->
  69. <!-- <goal>repackage</goal>-->
  70. <!-- </goals>-->
  71. <!-- </execution>-->
  72. <!-- </executions>-->
  73. <!-- </plugin>-->
  74. <!-- </plugins>-->
  75. <!-- </build>-->
  76. <build>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-compiler-plugin</artifactId>
  81. <version>3.8.1</version>
  82. <configuration>
  83. <source>1.8</source>
  84. <target>1.8</target>
  85. <encoding>UTF-8</encoding>
  86. <executable>true</executable>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. <version>2.3.7.RELEASE</version>
  93. <configuration>
  94. <includeSystemScope>true</includeSystemScope>
  95. <fork>true</fork>
  96. <mainClass>com.wteam.ClientApiApplication</mainClass>
  97. </configuration>
  98. <executions>
  99. <execution>
  100. <goals>
  101. <goal>repackage</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>