2017-12-19 18:25:03 +08:00
|
|
|
<?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>
|
2018-11-16 16:46:18 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2020-07-30 22:04:22 +08:00
|
|
|
<artifactId>hmily-rpc</artifactId>
|
|
|
|
<version>2.1.0-SNAPSHOT</version>
|
2017-12-19 18:25:03 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-11-16 16:46:18 +08:00
|
|
|
<artifactId>hmily-motan</artifactId>
|
2017-12-19 18:25:03 +08:00
|
|
|
|
|
|
|
<dependencies>
|
2019-04-02 17:58:34 +08:00
|
|
|
|
2017-12-19 18:25:03 +08:00
|
|
|
<dependency>
|
2019-04-02 17:58:34 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2020-07-30 22:04:22 +08:00
|
|
|
<artifactId>hmily-spring</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2017-12-19 18:25:03 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-08-03 12:14:52 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.dromara</groupId>
|
|
|
|
<artifactId>hmily-tcc</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2019-04-02 18:42:14 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2017-12-19 18:25:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.weibo</groupId>
|
|
|
|
<artifactId>motan-core</artifactId>
|
2019-04-02 17:58:34 +08:00
|
|
|
<scope>provided</scope>
|
2017-12-19 18:25:03 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.weibo</groupId>
|
|
|
|
<artifactId>motan-springsupport</artifactId>
|
2019-04-02 17:58:34 +08:00
|
|
|
<scope>provided</scope>
|
2017-12-19 18:25:03 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.weibo</groupId>
|
|
|
|
<artifactId>motan-transport-netty</artifactId>
|
2019-04-02 17:58:34 +08:00
|
|
|
<scope>provided</scope>
|
2017-12-19 18:25:03 +08:00
|
|
|
</dependency>
|
|
|
|
|
2019-04-02 17:58:34 +08:00
|
|
|
|
2017-12-19 18:25:03 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2018-11-16 16:46:18 +08:00
|
|
|
<finalName>hmily-motan</finalName>
|
2017-12-19 18:25:03 +08:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>${jdk.version}</source>
|
|
|
|
<target>${jdk.version}</target>
|
|
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|