我有一个spring boot应用程序。我在一个流浪盒(centos)中运行它。我使用了intelliJ IDEA。
我创建了一个Makefile,我正在尝试运行这个应用程序。
我从未使用过Makefile,因此我对它没有信心。 因此,对于你们中的一些人来说,这个问题似乎很容易。我试图做一些研究,但我无法取得任何成功。
我的Makefile包含: -
安装-MVN: mvn:install
我打开了一个终端,然后去了我的Makefile所在的位置,然后发出了' make'用于运行应用程序的命令。
我收到如下错误: -
[vagrant@localhost src]$ make
mvn :install
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] Total time: 0.578s
[INFO] Finished at: Fri Jul 14 17:24:31 IST 2017
[INFO] Final Memory: 4M/22M
[INFO] ------------------------------------------------------------------------
[ERROR] Could not find goal '' in plugin org.apache.maven.plugins:maven- install-plugin:2.3.1 among available goals install, install-file, help -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoNotFoundException
make: *** [install-mvn] Error 1
我不理解错误。你们中的任何人都可以指导我吗?我想知道什么是预期的以及Makefile包含什么。
提前致谢