pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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.microsoft.playwright</groupId>
  39. <artifactId>playwright</artifactId>
  40. <version>1.58.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.azure</groupId>
  44. <artifactId>azure-storage-blob</artifactId>
  45. <version>12.28.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-test</artifactId>
  54. <scope>test</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.pdfbox</groupId>
  58. <artifactId>pdfbox</artifactId>
  59. <version>2.0.24</version>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.apache.maven.plugins</groupId>
  67. <artifactId>maven-surefire-plugin</artifactId>
  68. <configuration>
  69. <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>