42 Star 210 Fork 68

如梦技术 / mica-auto

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.69 KB
一键复制 编辑 原始数据 按行查看 历史
如梦技术 提交于 2024-01-16 13:57 . :sparkles:完善对 Kotlin 的支持
apply plugin: "java-library"
apply from: "${rootProject.projectDir}/gradle/publish-maven.gradle"
ext {
javaVersion = JavaVersion.VERSION_17
springBootVersion = "3.2.1"
lombokVersion = "1.18.30"
googleAutoVersion = "1.1.1"
compileTestingVersion = '0.21.0'
inCapVersion = "1.0.0"
}
group = GROUPID
version = VERSION
allprojects {
apply plugin: 'java'
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
dependencies {
api "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
api "org.springframework.boot:spring-boot-autoconfigure-processor:$springBootVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
compileOnly "com.google.auto.service:auto-service:$googleAutoVersion"
annotationProcessor "com.google.auto.service:auto-service:$googleAutoVersion"
compileOnly "net.ltgt.gradle.incap:incap:$inCapVersion"
annotationProcessor "net.ltgt.gradle.incap:incap-processor:$inCapVersion"
testImplementation "com.google.testing.compile:compile-testing:$compileTestingVersion"
testImplementation "net.ltgt.gradle.incap:incap:$inCapVersion"
}
repositories {
mavenLocal()
maven { url "https://maven.aliyun.com/repository/public" }
maven { url "https://maven.aliyun.com/repository/spring" }
maven { url "https://maven.aliyun.com/repository/spring-plugin" }
maven { url "https://repo.spring.io/libs-release" }
maven { url "https://repo.spring.io/milestone" }
mavenCentral()
}
Java
1
https://gitee.com/596392912/mica-auto.git
git@gitee.com:596392912/mica-auto.git
596392912
mica-auto
mica-auto
master

搜索帮助