gradle打包springboot jar例子

buildscript{

repositories{

mavenCentral()//依赖Maven仓库

}

dependencies{

//使用1.5.10.RELEASE版本的Spring框架

classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")

}

}

applyplugin:'java'

applyplugin:'eclipse'

applyplugin:'spring-boot'

//生成的jar包包名和版本

jar{

baseName='test'

version='1.0'

}

repositories{

mavenCentral()

}

//设置jdk的版本

sourceCompatibility=1.8

targetCompatibility=1.8

//添加编译时的依赖

dependencies{

compile("org.springframework.boot:spring-boot-starter-web")

testCompile('org.springframework.boot:spring-boot-starter-test')

}

上面是gradl配置文件,然后执行gradleclean,在执行gradlebuild即可生产jar

相关推荐