pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.taais</groupId>
  7. <artifactId>taais-modules</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>taais-demo</artifactId>
  13. <description>
  14. demo模块
  15. </description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.taais</groupId>
  19. <artifactId>taais-common-core</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.taais</groupId>
  23. <artifactId>taais-common-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.taais</groupId>
  27. <artifactId>taais-common-springdoc</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.taais</groupId>
  31. <artifactId>taais-common-excel</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.taais</groupId>
  35. <artifactId>taais-common-log</artifactId>
  36. </dependency>
  37. </dependencies>
  38. </project>