我正在使用Java,Spring和Gradle。我是新手,并试图了解一些东西。我目前有gradle成功构建一个jar文件。 我想添加一个任务,以便gradle运行它构建的jar。 这样我可以做到
./gradlew clean build run
或者我可以在一个命令中尽可能地执行此操作。伪代码将是
task run {
clean
build
java -jar myJar.jar
}
我将如何做到这一点?
--- ---- INFO
我当前的build.gradle文件:
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:0.5.0.M6")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-boot'
jar {
baseName = 'gs-rest-service'
version = '0.1.0'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:0.5.0.M6")
compile("com.fasterxml.jackson.core:jackson-databind")
testCompile("junit:junit:4.11")
}
task wrapper(type: Wrapper) {
gradleVersion = '1.10'
}
答案 0 :(得分:2)
在任务依赖性中思考是很重要的。 run
不会按顺序执行其他任务(任务不能这样做);相反,它会在其先决条件上声明任务依赖性,例如jar
。无论如何,最简单的解决方案是只应用application
插件,您可以在Gradle User Guide中了解更多信息。