You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

127 lines
4.1 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  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>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.6.13</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.inscloudtech</groupId>
  13. <artifactId>alog-worker</artifactId>
  14. <name>worker</name>
  15. <description>worker for ALog</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <p6spy.version>3.9.1</p6spy.version>
  19. <dynamic-ds.version>3.5.2</dynamic-ds.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.inscloudtech</groupId>
  28. <artifactId>config-core</artifactId>
  29. <version>0.1.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-test</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>ru.yandex.clickhouse</groupId>
  38. <artifactId>clickhouse-jdbc</artifactId>
  39. <version>0.3.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.inscloudtech</groupId>
  43. <artifactId>alog-common</artifactId>
  44. <version>0.1.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.lmax</groupId>
  48. <artifactId>disruptor</artifactId>
  49. <version>3.4.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.baomidou</groupId>
  58. <artifactId>mybatis-plus-boot-starter</artifactId>
  59. <version>3.4.3</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. <version>1.18.26</version>
  65. </dependency>
  66. <!-- hutool 的依赖配置-->
  67. <dependency>
  68. <groupId>cn.hutool</groupId>
  69. <artifactId>hutool-all</artifactId>
  70. <version>5.8.18</version>
  71. </dependency>
  72. <!-- dynamic-datasource 多数据源-->
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  76. <version>${dynamic-ds.version}</version>
  77. </dependency>
  78. <!-- sql性能分析插件 -->
  79. <dependency>
  80. <groupId>p6spy</groupId>
  81. <artifactId>p6spy</artifactId>
  82. <version>${p6spy.version}</version>
  83. </dependency>
  84. <!-- <dependency>
  85. <groupId>com.alibaba.cloud</groupId>
  86. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  87. <version>2021.0.5.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba.cloud</groupId>
  91. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  92. <version>2021.0.5.0</version>
  93. </dependency>-->
  94. <!-- https://mvnrepository.com/artifact/com.dameng/DmJdbcDriver18 -->
  95. <dependency>
  96. <groupId>com.dameng</groupId>
  97. <artifactId>DmJdbcDriver18</artifactId>
  98. <version>8.1.2.192</version>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>