task buildDto(type: Jar) {
archiveBaseName = project.name
archiveClassifier = "dto"
from sourceSets.main.output
include 'com/example/gradetest/*.class'
}
自定义jar包
最新推荐文章于 2024-11-15 16:13:30 发布
task buildDto(type: Jar) {
archiveBaseName = project.name
archiveClassifier = "dto"
from sourceSets.main.output
include 'com/example/gradetest/*.class'
}