pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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.7-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.7-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.4</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.41.1</version>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <version>3.7.0</version>
  59. <configuration>
  60. <source>${java_source_version}</source>
  61. <target>${java_target_version}</target>
  62. <encoding>${file_encoding}</encoding>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>