pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>cn.yunzhixue</groupId>
  7. <artifactId>dcjxb.microservice</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../../../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>exam-sprint-infrastructure</artifactId>
  12. <name>exam-sprint-infrastructure</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>cn.yunzhixue</groupId>
  16. <artifactId>ability-center-kernel</artifactId>
  17. <version>${project.version}</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.yunzhixue</groupId>
  21. <artifactId>exam-sprint-contracts</artifactId>
  22. <version>${project.version}</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>cn.yunzhixue</groupId>
  26. <artifactId>exam-sprint-domain</artifactId>
  27. <version>${project.version}</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-context</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-autoconfigure</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.openhtmltopdf</groupId>
  39. <artifactId>openhtmltopdf-pdfbox</artifactId>
  40. <version>1.0.10</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.openhtmltopdf</groupId>
  44. <artifactId>openhtmltopdf-svg-support</artifactId>
  45. <version>1.0.10</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.microsoft.playwright</groupId>
  49. <artifactId>playwright</artifactId>
  50. <version>1.58.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.azure</groupId>
  54. <artifactId>azure-storage-blob</artifactId>
  55. <version>12.28.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. </dependencies>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <configuration>
  73. <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>