由于日志中的此错误,我无法在Heroku上部署Spring Boot应用程序:
ninja TriggersCppCompilationLib
来自the docs:
Gradle buildpack将运行不同的构建任务,具体取决于 它在您的应用中检测到的框架。对于Spring Boot,它将运行 ./gradlew build -x测试。对于Ratpack,它将运行./gradlew installDist -x测试。如果未检测到已知的Web框架,它将 运行./gradlew阶段。
这意味着Heroku没有检测到Spring Boot,它正在作为通用框架运行。.问题是为什么。在日志的开头,我得到:
FAILURE: Build failed with an exception.
* What went wrong:
Task 'stage' not found in root project 'scraper'.
* Try:
Run gradlew tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
作为技术人员,我有Spring Boot 2.1.1,Gradle和Kotlin 1.3.11。
谢谢