英文:
Gradle Wrapper: command not found?
问题
在我的Spring Boot Web应用程序中,我已经将Gradle Wrapper
添加到源代码控制中,这样用户在运行我的应用程序时就不需要预先安装Gradle。
我的项目文件结构如下所示 - 请注意,包含gradle-wrapper.jar
、gradle-wrapper.properties
和gradlew批处理文件
的gradle文件夹已经存在。
然而,当我尝试在该文件夹中运行gradlew clean build
时,我会得到以下错误信息:
gradlew:找不到命令
我该如何解决这个问题?
英文:
In my spring Boot web app I have added the Gradle Wrapper
to source control so that a user does not need gradle pre-installed to run my application.
My project file Structure is shown below - note the gradle folder with gradle-wrapper.jar
, gradle-wrapper.properties
and gradlew batch file
are present.
However when try to run gradlew clean build
in this folder I get:
gradlew:command not found
How can I solve this?
答案1
得分: 3
你的命令中缺少了 .
(点号)。从你的截图中看,你使用的是 Windows 机器,所以你应该使用 .bat
脚本。
./gradlew.bat help
英文:
You're missing the .
dot in your command. And from your screenshot, you're own a Windows machine so you should use the .bat
script.
./gradlew.bat help
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论