mirror of
https://github.com/WeiYe-Jing/datax-web.git
synced 2026-07-03 21:08:58 +08:00
97 lines
3.1 KiB
XML
97 lines
3.1 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<artifactId>datax-all</artifactId>
|
|
<groupId>com.wugui</groupId>
|
|
<version>2.1.0</version>
|
|
</parent>
|
|
<artifactId>datax-rpc</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
<dependencies>
|
|
<!-- ********************** net + serialize + registry (default = netty + hessian + xxl-registry) ********************** -->
|
|
|
|
<!-- netty -->
|
|
<dependency>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-all</artifactId>
|
|
<version>${netty.version}</version>
|
|
</dependency>
|
|
|
|
<!-- hessian -->
|
|
<dependency>
|
|
<groupId>com.caucho</groupId>
|
|
<artifactId>hessian</artifactId>
|
|
<version>${hessian.version}</version>
|
|
</dependency>
|
|
|
|
<!-- xxl-registry-client -->
|
|
<dependency>
|
|
<groupId>com.wugui</groupId>
|
|
<artifactId>datax-registry</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- ********************** base ********************** -->
|
|
|
|
<!-- slf4j -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j-api.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
<version>${slf4j-api.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
|
|
<!-- ********************** spring (default=provided) ********************** -->
|
|
|
|
<!-- spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>${spring.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>${spring.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>${spring.version}</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>*</groupId>
|
|
<artifactId>*</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |