加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
马丁 提交于 2023-07-19 22:25 . feature: 变更 JDK 版本
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.nageoffer.demeter</groupId>
<artifactId>demeter-all</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demeter</name>
<packaging>pom</packaging>
<description>
手写易用高性能的RPC框架,提供服务发现、流量治理、可观测、认证鉴权等能力,完成初学者完成手写RPC框架从零到一实现。
</description>
<modules>
<module>client</module>
<module>core</module>
<module>register</module>
<module>serialize</module>
<module>server</module>
<module>starter</module>
</modules>
<properties>
<java.version>8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化