pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>com.platomix</groupId>
  7. <artifactId>platomix-pom</artifactId>
  8. <version>1.0.6</version>
  9. <relativePath />
  10. </parent>
  11. <artifactId>platomix-gmetry-pdf</artifactId>
  12. <version>1.0.1</version>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. <!-- 排除Tomcat依赖 -->
  18. <exclusions>
  19. <exclusion>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-tomcat</artifactId>
  22. </exclusion>
  23. </exclusions>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-undertow</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.microsoft.playwright</groupId>
  31. <artifactId>playwright</artifactId>
  32. <version>1.28.1</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.hutool</groupId>
  36. <artifactId>hutool-all</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.commons</groupId>
  40. <artifactId>commons-pool2</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <finalName>platomix-gmetry-pdf</finalName>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. </plugin>
  50. <plugin>
  51. <groupId>io.fabric8</groupId>
  52. <artifactId>docker-maven-plugin</artifactId>
  53. <executions>
  54. <execution>
  55. <id>build-push</id>
  56. <phase>package</phase>
  57. <goals>
  58. <goal>build</goal>
  59. <goal>push</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. <repositories>
  67. <repository>
  68. <id>platomix-release</id>
  69. <name>私有Maven仓库</name>
  70. <url>https://windata.platomix.net/nexus/repository/maven-public/</url>
  71. </repository>
  72. </repositories>
  73. </project>