pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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>tofly-parent</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-orm-mybatisplus</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0</version>
  14. <properties>
  15. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  16. <oracle.version>11.2.0.4.0-atlassian-hosted</oracle.version>
  17. <mysql.version>8.0.21</mysql.version>
  18. <druid.version>1.1.16</druid.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.tofly</groupId>
  23. <artifactId>common-core</artifactId>
  24. <version>1.0.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.tofly</groupId>
  28. <artifactId>common-oauth</artifactId>
  29. <version>1.0.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-security</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.oracle</groupId>
  37. <artifactId>ojdbc6</artifactId>
  38. <version>${oracle.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. <version>${mysql.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.baomidou</groupId>
  47. <artifactId>mybatis-plus-boot-starter</artifactId>
  48. <version>${mybatis-plus.version}</version>
  49. </dependency>
  50. <!-- druid-->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>${druid.version}</version>
  55. </dependency>
  56. </dependencies>
  57. </project>