加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 974 Bytes
一键复制 编辑 原始数据 按行查看 历史
srcrs 提交于 2020-12-07 23:32 . 发布v1.0.8版本
plugins {
id 'java'
id "io.freefair.lombok" version '5.3.0'
}
group = 'top.srcrs'
version = '1.0.8'
sourceCompatibility = JavaVersion.VERSION_1_8
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
mavenLocal()
mavenCentral()
}
List alibaba = [
'com.alibaba:fastjson:latest.release'
]
List apache = [
'org.apache.httpcomponents:httpclient:latest.release'
]
List logback = [
'ch.qos.logback:logback-classic:latest.release'
]
List junit = [
'org.junit.jupiter:junit-jupiter-engine:latest.release'
]
List yaml = [
'org.yaml:snakeyaml:latest.release'
]
dependencies {
implementation logback,alibaba,apache,yaml
testImplementation junit
}
test {
useJUnitPlatform()
}
task runMain (type: JavaExec) {
main = 'top.srcrs.BiliStart'
classpath = sourceSets.main.runtimeClasspath
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化