pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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>ability-center</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>ability-center-kernel</artifactId>
  12. <name>ability-center-kernel</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>jakarta.validation</groupId>
  16. <artifactId>jakarta.validation-api</artifactId>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-surefire-plugin</artifactId>
  24. <configuration>
  25. <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. </project>