pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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.7.2</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.Tyson</groupId>
  12. <artifactId>tysonapi</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>tysonapi</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.apache.poi</groupId>
  22. <artifactId>poi</artifactId>
  23. <version>4.1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.poi</groupId>
  27. <artifactId>poi-ooxml</artifactId>
  28. <version>4.1.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.aliyun</groupId>
  32. <artifactId>dingtalk</artifactId>
  33. <version>1.3.25</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-configuration-processor</artifactId>
  42. <optional>true</optional>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/org.json/json -->
  45. <dependency>
  46. <groupId>org.json</groupId>
  47. <artifactId>json</artifactId>
  48. <version>20220320</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
  51. <dependency>
  52. <groupId>javax.mail</groupId>
  53. <artifactId>javax.mail-api</artifactId>
  54. <version>1.6.0</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/com.sun.mail/javax.mail -->
  57. <dependency>
  58. <groupId>com.sun.mail</groupId>
  59. <artifactId>javax.mail</artifactId>
  60. <version>1.6.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-devtools</artifactId>
  65. <scope>runtime</scope>
  66. <optional>true</optional>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <optional>true</optional>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-test</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-logging</artifactId>
  81. <version>2.5.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-starter</artifactId>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-logging</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>fastjson</artifactId>
  96. <version>2.0.23</version>
  97. </dependency>
  98. <!--swagger-->
  99. <dependency>
  100. <groupId>io.springfox</groupId>
  101. <artifactId>springfox-swagger2</artifactId>
  102. <version>2.9.2</version>
  103. </dependency>
  104. <!--swagger ui-->
  105. <dependency>
  106. <groupId>io.springfox</groupId>
  107. <artifactId>springfox-swagger-ui</artifactId>
  108. <version>2.9.2</version>
  109. </dependency>
  110. <!--swagger-bootstrap-ui-->
  111. <dependency>
  112. <groupId>com.github.xiaoymin</groupId>
  113. <artifactId>swagger-bootstrap-ui</artifactId>
  114. <version>1.9.2</version>
  115. </dependency>
  116. </dependencies>
  117. <build>
  118. <plugins>
  119. <plugin>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-maven-plugin</artifactId>
  122. <configuration>
  123. <excludes>
  124. <exclude>
  125. <groupId>org.projectlombok</groupId>
  126. <artifactId>lombok</artifactId>
  127. </exclude>
  128. </excludes>
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </build>
  133. </project>