pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.gct.common</groupId>
  8. <artifactId>microarch_bg_common</artifactId>
  9. <version>0.0.3-SNAPSHOT</version>
  10. </parent>
  11. <groupId>com.gct.common.core</groupId>
  12. <artifactId>common-core</artifactId>
  13. <version>3.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.projectlombok</groupId>
  17. <artifactId>lombok</artifactId>
  18. <optional>true</optional>
  19. </dependency>
  20. <!--mybatis-plus-->
  21. <dependency>
  22. <groupId>com.baomidou</groupId>
  23. <artifactId>mybatis-plus-boot-starter</artifactId>
  24. <optional>false</optional>
  25. </dependency>
  26. <!--swagger-->
  27. <dependency>
  28. <groupId>com.spring4all</groupId>
  29. <artifactId>swagger-spring-boot-starter</artifactId>
  30. <optional>false</optional>
  31. </dependency>
  32. <!--代码生成模式插件 3.0.3以后需要手动设置依赖-->
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-generator</artifactId>
  36. <optional>false</optional>
  37. </dependency>
  38. <!--代码生成模板-->
  39. <dependency>
  40. <groupId>org.apache.velocity</groupId>
  41. <artifactId>velocity-engine-core</artifactId>
  42. <optional>false</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>fastjson</artifactId>
  47. <version>1.2.58</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.apache.shardingsphere</groupId>
  51. <artifactId>sharding-jdbc-core</artifactId>
  52. <version>4.1.1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.shardingsphere</groupId>
  56. <artifactId>sharding-jdbc-spring-namespace</artifactId>
  57. <version>4.1.1</version>
  58. </dependency>
  59. <!--<dependency>
  60. <groupId>org.mybatis</groupId>
  61. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  62. <version>1.0.1</version>
  63. </dependency>-->
  64. <dependency>
  65. <groupId>org.postgresql</groupId>
  66. <artifactId>postgresql</artifactId>
  67. <version>42.2.18</version>
  68. </dependency>
  69. <!--<dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-jdbc</artifactId>
  72. </dependency>-->
  73. </dependencies>
  74. </project>