pom.xml 1.2 KB

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