pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>edu.travel</groupId>
  6. <artifactId>edu-travel-common</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>edu-travel-common-datasource</artifactId>
  10. <packaging>jar</packaging>
  11. <name>edu-travel-common-datasource</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>edu.travel</groupId>
  19. <artifactId>edu-travel-common-core</artifactId>
  20. <version>1.0-SNAPSHOT</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>edu.travel</groupId>
  25. <artifactId>edu-travel-common-excel</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>mysql</groupId>
  30. <artifactId>mysql-connector-java</artifactId>
  31. <scope>provided</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.postgresql</groupId>
  35. <artifactId>postgresql</artifactId>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.alibaba</groupId>
  44. <artifactId>druid-spring-boot-starter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.seata</groupId>
  48. <artifactId>seata-spring-boot-starter</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-security</artifactId>
  53. <scope>provided</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. <scope>provided</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>edu.travel</groupId>
  62. <artifactId>edu-travel-common-resp</artifactId>
  63. <version>1.0-SNAPSHOT</version>
  64. <scope>provided</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.github.jsqlparser</groupId>
  68. <artifactId>jsqlparser</artifactId>
  69. <version>4.5</version> <!-- 检查最新版本 -->
  70. </dependency>
  71. <dependency>
  72. <groupId>cn.hutool</groupId>
  73. <artifactId>hutool-all</artifactId>
  74. </dependency>
  75. </dependencies>
  76. </project>