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" 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.1.0</version>
  9. </parent>
  10. <groupId>com.kingtom.office</groupId>
  11. <artifactId>office-online-show</artifactId>
  12. <version>1.0</version>
  13. <properties>
  14. <java.version>17</java.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <jodconverter.version>4.4.7</jodconverter.version>
  17. <hutool.version>5.8.29</hutool.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-autoconfigure</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-quartz</artifactId>
  31. </dependency>
  32. <!-- jodconverter-->
  33. <dependency>
  34. <groupId>org.jodconverter</groupId>
  35. <artifactId>jodconverter-core</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jodconverter</groupId>
  39. <artifactId>jodconverter-local</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.jodconverter</groupId>
  43. <artifactId>jodconverter-spring-boot-starter</artifactId>
  44. </dependency>
  45. <!--lombok-->
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>javax.servlet</groupId>
  56. <artifactId>javax.servlet-api</artifactId>
  57. <version>4.0.1</version>
  58. <scope>provided</scope>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <finalName>officeOnlineShow</finalName>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70. <dependencyManagement>
  71. <dependencies>
  72. <dependency>
  73. <groupId>org.jodconverter</groupId>
  74. <artifactId>jodconverter-core</artifactId>
  75. <version>${jodconverter.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.jodconverter</groupId>
  79. <artifactId>jodconverter-local</artifactId>
  80. <version>${jodconverter.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.jodconverter</groupId>
  84. <artifactId>jodconverter-spring-boot-starter</artifactId>
  85. <version>${jodconverter.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.hutool</groupId>
  89. <artifactId>hutool-all</artifactId>
  90. <version>${hutool.version}</version>
  91. </dependency>
  92. </dependencies>
  93. </dependencyManagement>
  94. <distributionManagement>
  95. <repository>
  96. <id>releases</id>
  97. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  98. </repository>
  99. <snapshotRepository>
  100. <id>snapshots</id>
  101. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  102. </snapshotRepository>
  103. </distributionManagement>
  104. </project>