pom文件的 spring-boot-maven-plugin报红
maven
Maven: Apache Maven是一个开源的项目管理和构建工具,主要用于Java项目。适合需要自动化项目构建和依赖管理的开发者。特点包括约定优于配置、易于使用和社区驱动。
项目地址:https://gitcode.com/gh_mirrors/ma/maven

·
解决
报红是因为缺少版本号,后面加上即可<version>2.3.5.RELEASE</version>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.3.5.RELEASE</version>
</plugin>
</plugins>
</build>
补充
所加版本号需要和springboot的版本号一致。
感谢大神补充,来自:
baihua1113
AC_Crush




Maven: Apache Maven是一个开源的项目管理和构建工具,主要用于Java项目。适合需要自动化项目构建和依赖管理的开发者。特点包括约定优于配置、易于使用和社区驱动。
最近提交(Master分支:8 天前 )
c46df0da
Fixes #11200 12 小时前
210dbdcb
This commit enables repository URL interpolation in Maven 4 while maintaining
backward compatibility and providing early validation of unresolved expressions.
Repository URLs can now use expressions like ${env.REPO_URL} and ${project.basedir.uri}
which are interpolated during model building.
Key changes:
1. DefaultModelBuilder: Add repository URL interpolation during model building
- Support for repositories, pluginRepositories, profiles, and distributionManagement
- Provide basedir, project.basedir, project.basedir.uri, project.rootDirectory,
and project.rootDirectory.uri properties for interpolation
- Enable environment variable and project property interpolation in repository URLs
2. DefaultModelValidator: Validate interpolated repository URLs for unresolved expressions
- Repository URL expressions are interpolated during model building
- After interpolation, any remaining ${...} expressions cause validation errors
- Early failure during model validation provides clear error messages
3. CompatibilityFixStrategy: Remove repository disabling logic, replace with
informational logging for interpolated URLs
4. Add integration tests for repository URL interpolation:
- Test successful interpolation from environment variables and project properties
- Test early failure when expressions cannot be resolved during model building
The new approach enables legitimate use cases while providing early, clear error
messages for unresolved expressions during the validate phase rather than later
during repository resolution. 1 天前
更多推荐
所有评论(0)