pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-application</artifactId>
  12. <name>exam-sprint-application</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>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-validation</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <configuration>
  57. <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>