pom.xml 901 B

123456789101112131415161718192021222324
  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>hsweb-system-datasource</artifactId>
  7. <groupId>org.hswebframework.web</groupId>
  8. <version>3.0.12-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <description>动态数据源配置api</description>
  13. <artifactId>hsweb-system-datasource-api</artifactId>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.hswebframework.web</groupId>
  17. <artifactId>hsweb-commons-service-api</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. </dependencies>
  21. </project>