有一个简单的Eclipse插件可以运行Gradle,它仅使用命令行方式来启动gradle。
什么是用于Maven编译和运行的Gradle模拟
mvn compile exec:java -Dexec.mainClass=example.Example
这样,任何项目gradle.build
都可以运行。
更新:有一个类似的问题,对于运行Java应用程序,maven的exec插件的等效功能是什么?之前问过,但是解决方案建议更改每个项目build.gradle
package runclass;
public class RunClass {
public static void main(String[] args) {
System.out.println("app is running!");
}
}
然后执行 gradle run -DmainClass=runclass.RunClass
:run FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':run'.
> No main class specified
可能是stackoverflow.com/questions/16350757/…的
—
特雷莎·卡里根
使用命令:gradle run
—
a_subscriber