171 lines
6.3 KiB
XML
171 lines
6.3 KiB
XML
<?xml version="1.0"?>
|
|
<project 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"
|
|
xmlns="http://maven.apache.org/POM/4.0.0">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc</artifactId>
|
|
<version>5.4.15-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc-daemon</artifactId>
|
|
<url>http://maven.apache.org</url>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<jetty-version>9.4.48.v20220622</jetty-version>
|
|
<license.dir>${project.parent.basedir}</license.dir>
|
|
</properties>
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc-common</artifactId>
|
|
<version>5.4.15-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc-meta</artifactId>
|
|
<version>5.4.15-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc-monitor</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.prometheus</groupId>
|
|
<artifactId>simpleclient</artifactId>
|
|
<version>0.10.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.prometheus</groupId>
|
|
<artifactId>simpleclient_common</artifactId>
|
|
<version>0.10.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
<version>2.10.6</version>
|
|
</dependency>
|
|
|
|
<!-- jetty -->
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-server</artifactId>
|
|
<version>${jetty-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlet</artifactId>
|
|
<version>${jetty-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-servlets</artifactId>
|
|
<version>${jetty-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
<artifactId>jetty-proxy</artifactId>
|
|
<version>${jetty-version}</version>
|
|
</dependency>
|
|
|
|
<!--jersey-->
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-server</artifactId>
|
|
<version>1.19.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-servlet</artifactId>
|
|
<version>1.19.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.jersey</groupId>
|
|
<artifactId>jersey-json</artifactId>
|
|
<version>1.19.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>1.6.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.aliyun.polardbx</groupId>
|
|
<artifactId>polardbx-cdc-rpl</artifactId>
|
|
<version>5.4.15-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<!-- 统一使用task.sh启动 -->
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-jar-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <archive>-->
|
|
<!-- <manifest>-->
|
|
<!-- <addClasspath>true</addClasspath>-->
|
|
<!-- <classpathPrefix>libs/</classpathPrefix>-->
|
|
<!-- <mainClass>-->
|
|
<!-- com.aliyun.polardbx.binlog.daemon.DaemonBootStrap-->
|
|
<!-- </mainClass>-->
|
|
<!-- </manifest>-->
|
|
<!-- </archive>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-dependency-plugin</artifactId>-->
|
|
<!-- <executions>-->
|
|
<!-- <execution>-->
|
|
<!-- <id>copy-dependencies</id>-->
|
|
<!-- <phase>prepare-package</phase>-->
|
|
<!-- <goals>-->
|
|
<!-- <goal>copy-dependencies</goal>-->
|
|
<!-- </goals>-->
|
|
<!-- <configuration>-->
|
|
<!-- <outputDirectory>-->
|
|
<!-- ${project.build.directory}/libs-->
|
|
<!-- </outputDirectory>-->
|
|
<!-- </configuration>-->
|
|
<!-- </execution>-->
|
|
<!-- </executions>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
</project>
|