pom.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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.5-SNAPSHOT</version>
  7. <packaging>pom</packaging>
  8. <modules>
  9. <module>canal-admin-ui</module>
  10. <module>canal-admin-server</module>
  11. </modules>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.test.skip>true</maven.test.skip>
  15. <downloadSources>true</downloadSources>
  16. <java_source_version>1.8</java_source_version>
  17. <java_target_version>1.8</java_target_version>
  18. <file_encoding>UTF-8</file_encoding>
  19. </properties>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-dependencies</artifactId>
  25. <version>2.0.1.RELEASE</version>
  26. <type>pom</type>
  27. <scope>import</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. <version>5.1.40</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.ben-manes.caffeine</groupId>
  36. <artifactId>caffeine</artifactId>
  37. <version>2.6.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>commons-beanutils</groupId>
  41. <artifactId>commons-beanutils</artifactId>
  42. <version>1.8.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-lang</groupId>
  46. <artifactId>commons-lang</artifactId>
  47. <version>2.6</version>
  48. </dependency>
  49. </dependencies>
  50. </dependencyManagement>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-compiler-plugin</artifactId>
  56. <version>3.7.0</version>
  57. <configuration>
  58. <source>${java_source_version}</source>
  59. <target>${java_target_version}</target>
  60. <encoding>${file_encoding}</encoding>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>