123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>tofly-parent</artifactId>
- <groupId>com.tofly</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>common-orm-mybatisplus</artifactId>
- <packaging>jar</packaging>
- <version>1.0.0</version>
- <properties>
- <mybatis-plus.version>3.3.2</mybatis-plus.version>
- <oracle.version>11.2.0.4.0-atlassian-hosted</oracle.version>
- <mysql.version>8.0.21</mysql.version>
- <druid.version>1.1.16</druid.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-core</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-oauth</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-security</artifactId>
- </dependency>
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>${oracle.version}</version>
- </dependency>
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>${mysql.version}</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
-
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>${druid.version}</version>
- </dependency>
- </dependencies>
- </project>
|