我正在尝试将时间限制器配方注入代码库,我构建成功,但配方没有注入代码库请任何也面临同样问题或有任何想法的人请提供帮助。 如果有人面临同样的问题,请帮助解决构建成功时获取消息的问题,但在时间限制器代码未注入之后,请检查此问题并帮助解决。
在此问题副本中添加了更多细节: https://github.com/openrewrite/rewrite/discussions/4171
[INFO] --- rewrite:4.15.0:run (default-cli) @ myproject ---
[INFO] Using active recipe(s) []
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.299 s
这暗示了配置问题,您没有传递任何活动配方。
在命令行上使用此参数:
-Drewrite.activeRecipes=org.openrewrite.java.OrderImports
或者在你的 pom.xml 中进行这种类型的配置
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.29.0</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.java.OrderImports</recipe>
</activeRecipes>
</configuration>
</plugin>