pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>gihon.component</groupId>
  8. <artifactId>component-parent</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. <relativePath>../</relativePath>
  11. </parent>
  12. <artifactId>component-database</artifactId>
  13. <name>component-database</name>
  14. <packaging>jar</packaging>
  15. <description>数据库操作</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>gihon.component</groupId>
  19. <artifactId>component-entity</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>gihon.component</groupId>
  23. <artifactId>component-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba</groupId>
  27. <artifactId>druid-spring-boot-starter</artifactId>
  28. </dependency>
  29. <!-- 数据库 -->
  30. <!--
  31. <dependency>
  32. <groupId>com.oracle.database.jdbc</groupId>
  33. <artifactId>ojdbc8</artifactId>
  34. <scope>runtime</scope>
  35. </dependency>
  36. -->
  37. <dependency>
  38. <groupId>mysql</groupId>
  39. <artifactId>mysql-connector-java</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. </dependencies>
  43. </project>