2.0重构版本
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

96 行
2.3 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.9</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>cc.smtweb</groupId>
  12. <artifactId>canal.file</artifactId>
  13. <version>1.1.5</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-web</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!--快重启-->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-devtools</artifactId>
  31. <optional>true</optional> <!-- 可选 -->
  32. </dependency>
  33. <!--平台-->
  34. <dependency>
  35. <groupId>cc.smtweb</groupId>
  36. <artifactId>sw-framework-core</artifactId>
  37. <version>3.1.0-SNAPSHOT</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cc.smtweb</groupId>
  41. <artifactId>canal.example</artifactId>
  42. <version>1.1.5</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cc.smtweb</groupId>
  46. <artifactId>canal.deployer</artifactId>
  47. <version>1.1.5</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.kingbase8</groupId>
  51. <artifactId>kingbase8</artifactId>
  52. <version>8.6.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.dmsql</groupId>
  56. <artifactId>dmsql</artifactId>
  57. <version>1.0.0</version>
  58. </dependency>
  59. </dependencies>
  60. <repositories>
  61. <repository>
  62. <id>nexus-jjkj</id>
  63. <name>Nexus jjkj</name>
  64. <url>http://47.92.149.153:7000/repository/maven-public/</url>
  65. <releases>
  66. <enabled>true</enabled>
  67. </releases>
  68. <snapshots>
  69. <enabled>true</enabled>
  70. </snapshots>
  71. </repository>
  72. </repositories>
  73. <build>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. </plugin>
  79. </plugins>
  80. </build>
  81. </project>