gradle打包springboot jar例子
程序员文章站
2022-04-01 17:35:43
...
buildscript {
repositories {
mavenCentral()//依赖Maven仓库
}
dependencies {
//使用1.5.10.RELEASE版本的Spring框架
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: '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配置文件,然后执行gradle clean ,在执行gradle build 即可生产jar
repositories {
mavenCentral()//依赖Maven仓库
}
dependencies {
//使用1.5.10.RELEASE版本的Spring框架
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: '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配置文件,然后执行gradle clean ,在执行gradle build 即可生产jar
推荐阅读
-
springboot文件打包成jar或war的方法
-
SpringBoot项目打包成jar包
-
Springboot导入本地jar后 打包依赖无法加入的解决方案
-
Springboot打包成jar包和war包,并且可以在外部tomcat下运行访问到
-
如何将SpringBoot+Vue前后端分离项目一次打包为一个Jar包运行?
-
AndroidStduio3.0 使用gradle将module打包jar文件
-
SpringBoot工程中导入本地自定义Jar包——通过Maven打包导包(超详细)
-
Springboot中引入本地jar包,并通过maven把项目成功打包成jar包部署
-
springboot 打包成 jar 或 war
-
Idea Java Gradle创建项目,添加依赖,引用本地jar,打包jar