pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>3.5.11</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com</groupId>
  12. <artifactId>grape-city</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>grape-city</name>
  15. <description>grape-city</description>
  16. <url/>
  17. <licenses>
  18. <license/>
  19. </licenses>
  20. <developers>
  21. <developer/>
  22. </developers>
  23. <scm>
  24. <connection/>
  25. <developerConnection/>
  26. <tag/>
  27. <url/>
  28. </scm>
  29. <properties>
  30. <java.version>17</java.version>
  31. </properties>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-web</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.grapecitysoft.documents</groupId>
  48. <artifactId>gcexcel</artifactId>
  49. <version>8.0.6</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba.fastjson2</groupId>
  53. <artifactId>fastjson2</artifactId>
  54. <version>2.0.57</version>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-maven-plugin</artifactId>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. <!-- 使用 huawei / aliyun 的 Maven 源,提升下载速度 -->
  66. <repositories>
  67. <repository>
  68. <id>huaweicloud</id>
  69. <name>huawei</name>
  70. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  71. </repository>
  72. <repository>
  73. <id>aliyunmaven</id>
  74. <name>aliyun</name>
  75. <url>https://maven.aliyun.com/repository/public</url>
  76. </repository>
  77. <repository>
  78. <id>spring-milestones</id>
  79. <name>Spring Milestones</name>
  80. <url>https://repo.spring.io/milestone</url>
  81. <snapshots>
  82. <enabled>false</enabled>
  83. </snapshots>
  84. </repository>
  85. <repository>
  86. <id>spring-snapshots</id>
  87. <name>Spring Snapshots</name>
  88. <url>https://repo.spring.io/snapshot</url>
  89. <releases>
  90. <enabled>false</enabled>
  91. </releases>
  92. </repository>
  93. </repositories>
  94. </project>