12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>gihon.component</groupId>
- <artifactId>component-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../</relativePath>
- </parent>
- <artifactId>component-database</artifactId>
- <name>component-database</name>
- <packaging>jar</packaging>
- <description>数据库操作</description>
- <dependencies>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-entity</artifactId>
- </dependency>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- </dependency>
- <!-- 数据库 -->
- <!--
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- <scope>runtime</scope>
- </dependency>
- -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- </project>
|