|
@@ -1,64 +0,0 @@
|
|
-<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
-<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">
|
|
|
|
- <parent>
|
|
|
|
- <artifactId>canal.client-adapter</artifactId>
|
|
|
|
- <groupId>com.alibaba.otter</groupId>
|
|
|
|
- <version>1.1.1-SNAPSHOT</version>
|
|
|
|
- </parent>
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
- <groupId>com.alibaba.otter</groupId>
|
|
|
|
- <artifactId>adapter-connector</artifactId>
|
|
|
|
- <packaging>pom</packaging>
|
|
|
|
- <name>canal client adapter connector module for otter ${project.version}</name>
|
|
|
|
-
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba.otter</groupId>
|
|
|
|
- <artifactId>client-adapter.logger</artifactId>
|
|
|
|
- <version>${project.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>*</artifactId>
|
|
|
|
- <groupId>*</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- <classifier>jar-with-dependencies</classifier>
|
|
|
|
- </dependency>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.alibaba.otter</groupId>
|
|
|
|
- <artifactId>client-adapter.hbase</artifactId>
|
|
|
|
- <version>${project.version}</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <artifactId>*</artifactId>
|
|
|
|
- <groupId>*</groupId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- <classifier>jar-with-dependencies</classifier>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
-
|
|
|
|
- <build>
|
|
|
|
- <plugins>
|
|
|
|
- <plugin>
|
|
|
|
- <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
- <artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
- <version>2.10</version>
|
|
|
|
- <executions>
|
|
|
|
- <execution>
|
|
|
|
- <id>copy-dependencies-to-canal-client-service</id>
|
|
|
|
- <phase>package</phase>
|
|
|
|
- <goals>
|
|
|
|
- <goal>copy-dependencies</goal>
|
|
|
|
- </goals>
|
|
|
|
- <configuration>
|
|
|
|
- <outputDirectory>${project.basedir}/../adapter-launcher/target/lib</outputDirectory>
|
|
|
|
- </configuration>
|
|
|
|
- </execution>
|
|
|
|
- </executions>
|
|
|
|
- </plugin>
|
|
|
|
- </plugins>
|
|
|
|
- </build>
|
|
|
|
-</project>
|
|
|