企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] # 简介 Resources插件负责处理项目资源文件并拷贝到输出目录。Maven将main resources和test resources分开,一般main resources关联main source code,而test resources关联test source code。 # maven项目路径 ![](https://img.kancloud.cn/31/dd/31dd72d50d503db67574d1f5fe580da8_308x917.png) ~~~ <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> <!--配置资源文件编码--> </configuration> </plugin> ~~~