pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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-common</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>taais-common-orm</artifactId>
  12. <description>
  13. taais-common-orm 数据库映射服务
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.taais</groupId>
  18. <artifactId>taais-common-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.taais</groupId>
  22. <artifactId>taais-common-security</artifactId>
  23. </dependency>
  24. <!-- pagehelper 分页插件 -->
  25. <dependency>
  26. <groupId>com.github.pagehelper</groupId>
  27. <artifactId>pagehelper</artifactId>
  28. </dependency>
  29. </dependencies>
  30. </project>