1
0

pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.alibaba.otter</groupId>
  5. <artifactId>canal.admin</artifactId>
  6. <version>1.1.6</version>
  7. <packaging>pom</packaging>
  8. <name>canal admin module for otter ${project.version}</name>
  9. <modules>
  10. <module>admin-ui</module>
  11. <module>admin-web</module>
  12. </modules>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.test.skip>true</maven.test.skip>
  16. <downloadSources>true</downloadSources>
  17. <java_source_version>1.8</java_source_version>
  18. <java_target_version>1.8</java_target_version>
  19. <file_encoding>UTF-8</file_encoding>
  20. <log4j_version>2.17.0</log4j_version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-context</artifactId>
  27. <version>2.0.0.RELEASE</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-core</artifactId>
  32. <version>5.0.5.RELEASE</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-aop</artifactId>
  37. <version>5.0.5.RELEASE</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework</groupId>
  41. <artifactId>spring-context</artifactId>
  42. <version>5.0.5.RELEASE</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework</groupId>
  46. <artifactId>spring-jdbc</artifactId>
  47. <version>5.0.5.RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework</groupId>
  51. <artifactId>spring-orm</artifactId>
  52. <version>5.0.5.RELEASE</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework</groupId>
  56. <artifactId>spring-test</artifactId>
  57. <version>5.0.5.RELEASE</version>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-dependencies</artifactId>
  63. <version>2.0.1.RELEASE</version>
  64. <type>pom</type>
  65. <scope>import</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>mysql</groupId>
  69. <artifactId>mysql-connector-java</artifactId>
  70. <version>5.1.48</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.github.ben-manes.caffeine</groupId>
  74. <artifactId>caffeine</artifactId>
  75. <version>2.6.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>commons-beanutils</groupId>
  79. <artifactId>commons-beanutils</artifactId>
  80. <version>1.8.2</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-lang</groupId>
  84. <artifactId>commons-lang</artifactId>
  85. <version>2.6</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>io.ebean</groupId>
  89. <artifactId>ebean</artifactId>
  90. <version>11.41.1</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.logging.log4j</groupId>
  94. <artifactId>log4j-core</artifactId>
  95. <version>${log4j_version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.logging.log4j</groupId>
  99. <artifactId>log4j-api</artifactId>
  100. <version>${log4j_version}</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.logging.log4j</groupId>
  104. <artifactId>log4j-to-slf4j</artifactId>
  105. <version>${log4j_version}</version>
  106. </dependency>
  107. </dependencies>
  108. </dependencyManagement>
  109. <build>
  110. <plugins>
  111. <plugin>
  112. <groupId>org.apache.maven.plugins</groupId>
  113. <artifactId>maven-compiler-plugin</artifactId>
  114. <version>3.7.0</version>
  115. <configuration>
  116. <source>${java_source_version}</source>
  117. <target>${java_target_version}</target>
  118. <encoding>${file_encoding}</encoding>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>