加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 5.08 KB
一键复制 编辑 原始数据 按行查看 历史
王哞哞 提交于 2022-07-29 01:21 . feature: 新增starter,有bug
<?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>
<groupId>top.scauwlt</groupId>
<artifactId>my-rpc</artifactId>
<version>1.0-SNAPSHOT</version>
<modules>
<module>rpc-framework-core</module>
<module>rpc-framework-common</module>
<module>rpc-test</module>
<module>rpc-client-example</module>
<module>rpc-server-example</module>
<module>rpc-server-api</module>
<module>rpc-server-spring-boot-starter</module>
<module>rpc-spring-boot-example-server</module>
<module>rpc-spring-boot-example-client</module>
<module>rpc-client-spring-boot-starter</module>
</modules>
<packaging>pom</packaging>
<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<netty.version>4.1.42.Final</netty.version>
<kryo.version>4.0.2</kryo.version>
<guava.version>30.1.1-jre</guava.version>
<checkstyle-maven-plugin.version>3.1.1</checkstyle-maven-plugin.version>
<spring.version>5.2.7.RELEASE</spring.version>
<curator-version>4.2.0</curator-version>
<nacos.version>1.3.0</nacos.version>
<!-- TestSPI -->
<junit.jupiter.version>5.5.2</junit.jupiter.version>
<junit.platform.version>1.5.2</junit.platform.version>
<!--logging-->
<slf4j.version>1.7.25</slf4j.version>
<!-- protostuff -->
<protostuff.version>1.7.2</protostuff.version>
<!--hessian-->
<hessian.version>4.0.65</hessian.version>
<rpc-core.version>1.0-SNAPSHOT</rpc-core.version>
<rpc-common.version>1.0-SNAPSHOT</rpc-common.version>
<logback.version>1.2.3</logback.version>
</properties>
<dependencies>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
<scope>provided</scope>
</dependency>
<!-- guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<!-- log -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- TestSPI -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.jupiter.version}</version>
<scope>TestSPI</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-runner</artifactId>
<version>${junit.platform.version}</version>
<scope>TestSPI</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle-maven-plugin.version}</version>
<configuration>
<configLocation>check/checkstyle.xml</configLocation>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle-maven-plugin.version}</version>
<configuration>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化