pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.18</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>8</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. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.hutool</groupId>
  38. <artifactId>hutool-all</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>javax.servlet</groupId>
  42. <artifactId>javax.servlet-api</artifactId>
  43. <version>4.0.1</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.commons</groupId>
  48. <artifactId>commons-exec</artifactId>
  49. <version>1.4.0</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <finalName>officeOnlineShow</finalName>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-maven-plugin</artifactId>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. <dependencyManagement>
  62. <dependencies>
  63. <dependency>
  64. <groupId>org.jodconverter</groupId>
  65. <artifactId>jodconverter-core</artifactId>
  66. <version>${jodconverter.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.jodconverter</groupId>
  70. <artifactId>jodconverter-local</artifactId>
  71. <version>${jodconverter.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.jodconverter</groupId>
  75. <artifactId>jodconverter-spring-boot-starter</artifactId>
  76. <version>${jodconverter.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>cn.hutool</groupId>
  80. <artifactId>hutool-all</artifactId>
  81. <version>${hutool.version}</version>
  82. </dependency>
  83. </dependencies>
  84. </dependencyManagement>
  85. <distributionManagement>
  86. <repository>
  87. <id>releases</id>
  88. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  89. </repository>
  90. <snapshotRepository>
  91. <id>snapshots</id>
  92. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  93. </snapshotRepository>
  94. </distributionManagement>
  95. </project>