pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.alibaba.otter</groupId>
  5. <artifactId>canal</artifactId>
  6. <version>1.1.8-SNAPSHOT</version>
  7. <relativePath>../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.alibaba.otter</groupId>
  11. <artifactId>canal.admin</artifactId>
  12. <version>1.1.8-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <name>canal admin module for otter ${project.version}</name>
  15. <modules>
  16. <module>admin-ui</module>
  17. <module>admin-web</module>
  18. </modules>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <maven.test.skip>true</maven.test.skip>
  22. <downloadSources>true</downloadSources>
  23. <java_source_version>1.8</java_source_version>
  24. <java_target_version>1.8</java_target_version>
  25. <file_encoding>UTF-8</file_encoding>
  26. </properties>
  27. <dependencyManagement>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-context</artifactId>
  32. <version>3.0.6</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-dependencies</artifactId>
  37. <version>2.5.15</version>
  38. <type>pom</type>
  39. <scope>import</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.ben-manes.caffeine</groupId>
  43. <artifactId>caffeine</artifactId>
  44. <version>2.6.2</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>io.ebean</groupId>
  48. <artifactId>ebean</artifactId>
  49. <version>11.45.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.yaml</groupId>
  53. <artifactId>snakeyaml</artifactId>
  54. <version>2.0</version>
  55. </dependency>
  56. </dependencies>
  57. </dependencyManagement>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-compiler-plugin</artifactId>
  63. <version>3.7.0</version>
  64. <configuration>
  65. <source>${java_source_version}</source>
  66. <target>${java_target_version}</target>
  67. <encoding>${file_encoding}</encoding>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>