pom.xml 2.7 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>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.azure</groupId>
  49. <artifactId>azure-storage-blob</artifactId>
  50. <version>12.28.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-databind</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-test</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. </dependencies>
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-surefire-plugin</artifactId>
  67. <configuration>
  68. <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
  69. </configuration>
  70. </plugin>
  71. </plugins>
  72. </build>
  73. </project>