pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. <parent>
  5. <groupId>com.alibaba.otter</groupId>
  6. <artifactId>canal</artifactId>
  7. <version>1.1.9-SNAPSHOT</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <groupId>com.alibaba.otter</groupId>
  11. <artifactId>canal.connector</artifactId>
  12. <version>1.1.9-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <name>canal connector module for otter ${project.version}</name>
  15. <properties>
  16. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  17. <maven.test.skip>true</maven.test.skip>
  18. <downloadSources>true</downloadSources>
  19. <java_source_version>1.8</java_source_version>
  20. <java_target_version>1.8</java_target_version>
  21. <file_encoding>UTF-8</file_encoding>
  22. </properties>
  23. <licenses>
  24. <license>
  25. <name>Apache License, Version 2.0</name>
  26. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  27. </license>
  28. </licenses>
  29. <scm>
  30. <url>git@github.com:alibaba/canal.git</url>
  31. <connection>scm:git:git@github.com:alibaba/canal.git</connection>
  32. <developerConnection>scm:git:git@github.com:alibaba/canal.git</developerConnection>
  33. </scm>
  34. <repositories>
  35. <repository>
  36. <id>central</id>
  37. <url>https://repo1.maven.org/maven2</url>
  38. <releases>
  39. <enabled>true</enabled>
  40. </releases>
  41. <snapshots>
  42. <enabled>false</enabled>
  43. </snapshots>
  44. </repository>
  45. <repository>
  46. <id>java.net</id>
  47. <url>https://download.java.net/maven/2/</url>
  48. <releases>
  49. <enabled>true</enabled>
  50. </releases>
  51. <snapshots>
  52. <enabled>false</enabled>
  53. </snapshots>
  54. </repository>
  55. <repository>
  56. <id>aliyun</id>
  57. <url>https://maven.aliyun.com/nexus/content/groups/public/</url>
  58. <releases>
  59. <enabled>true</enabled>
  60. </releases>
  61. <snapshots>
  62. <enabled>false</enabled>
  63. </snapshots>
  64. </repository>
  65. <repository>
  66. <id>sonatype</id>
  67. <name>sonatype</name>
  68. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  69. <releases>
  70. <enabled>false</enabled>
  71. </releases>
  72. <snapshots>
  73. <enabled>true</enabled>
  74. </snapshots>
  75. </repository>
  76. <repository>
  77. <id>sonatype-release</id>
  78. <name>sonatype-release</name>
  79. <url>https://oss.sonatype.org/service/local/repositories/releases/content</url>
  80. <releases>
  81. <enabled>false</enabled>
  82. </releases>
  83. <snapshots>
  84. <enabled>true</enabled>
  85. </snapshots>
  86. </repository>
  87. </repositories>
  88. <modules>
  89. <module>core</module>
  90. <module>kafka-connector</module>
  91. <module>rocketmq-connector</module>
  92. <module>rabbitmq-connector</module>
  93. <module>pulsarmq-connector</module>
  94. <module>tcp-connector</module>
  95. </modules>
  96. <build>
  97. <plugins>
  98. <plugin>
  99. <groupId>org.apache.maven.plugins</groupId>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <version>3.7.0</version>
  102. <configuration>
  103. <source>${java_source_version}</source>
  104. <target>${java_target_version}</target>
  105. <encoding>${file_encoding}</encoding>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. <distributionManagement>
  111. <snapshotRepository>
  112. <id>sonatype-nexus-snapshots</id>
  113. <name>Sonatype Nexus Snapshots</name>
  114. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  115. </snapshotRepository>
  116. <repository>
  117. <id>sonatype-nexus-staging</id>
  118. <name>Nexus Release Repository</name>
  119. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  120. </repository>
  121. </distributionManagement>
  122. </project>