pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.4</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.example</groupId>
  12. <artifactId>demo</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>SmartBowBusinessServer</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-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-mail</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tencentcloudapi</groupId>
  35. <artifactId>tencentcloud-sdk-java</artifactId>
  36. <!-- go to https://search.maven.org/search?q=tencentcloud-sdk-java and get the latest version. -->
  37. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询所有版本,最新版本如下 -->
  38. <version>3.1.681</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>httpclient</artifactId>
  43. <version>4.5.12</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>easyexcel</artifactId>
  48. <version>3.1.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>pers.jc</groupId>
  52. <artifactId>JCEngine</artifactId>
  53. <version>1.0</version>
  54. <scope>system</scope>
  55. <systemPath>${project.basedir}/lib/JCEngine.jar</systemPath>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.jdom</groupId>
  59. <artifactId>jdom2</artifactId>
  60. <version>2.0.6</version>
  61. </dependency>
  62. <!--验证苹果登录操作相关-->
  63. <dependency>
  64. <groupId>com.auth0</groupId>
  65. <artifactId>jwks-rsa</artifactId>
  66. <version>0.9.0</version>
  67. </dependency>
  68. <!--jwt-->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt</artifactId>
  72. <version>0.9.1</version>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <finalName>SmartBowBusinessServer</finalName>
  77. <plugins>
  78. <plugin>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-maven-plugin</artifactId>
  81. <configuration>
  82. <includeSystemScope>true</includeSystemScope>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>