pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>helio-starters</artifactId>
  7. <groupId>cc.uncarbon.framework</groupId>
  8. <version>${revision}</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>helio-starter-crud</artifactId>
  13. <properties>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>cc.uncarbon.framework</groupId>
  18. <artifactId>helio-core</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.baomidou</groupId>
  22. <artifactId>mybatis-plus-boot-starter</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>mysql</groupId>
  26. <artifactId>mysql-connector-java</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.postgresql</groupId>
  30. <artifactId>postgresql</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.oracle.database.jdbc</groupId>
  34. <artifactId>ojdbc8</artifactId>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.microsoft.sqlserver</groupId>
  39. <artifactId>mssql-jdbc</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.baomidou</groupId>
  44. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. </dependencies>
  48. </project>