云链智安
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

pom.xml 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>yubb</artifactId>
  7. <groupId>com.yubb</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>yubb-system</artifactId>
  12. <description>
  13. system-saas系统模块
  14. </description><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><configuration><source>8</source><target>8</target></configuration></plugin></plugins></build>
  15. <dependencies>
  16. <!-- 通用工具 -->
  17. <dependency>
  18. <groupId>com.yubb</groupId>
  19. <artifactId>yubb-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>javax.validation</groupId>
  23. <artifactId>validation-api</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.shiro</groupId>
  27. <artifactId>shiro-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>javax.validation</groupId>
  31. <artifactId>validation-api</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>