代码拉取完成,页面将自动刷新
同步操作将从 shinstein/gateway 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/google/'
}
maven {
url 'https://maven.aliyun.com/repositories/jcenter'
}
maven {
url 'https://maven.aliyun.com/repository/central'
}
maven {
url "https://jitpack.io"
}
mavenCentral()
}
ext {
junitVersion = '4.12'
gatewayVersion = '3.1.8'
nacosVersion = '2021.1'
loadbalancerVersion = '3.1.7'
hutoolVersion = '5.8.21'
jwtVersion = '0.9.1'
lombokVersion = '1.18.24'
gsonVersion = '2.10.1'
}
dependencies {
testCompile "junit:junit:$junitVersion"
implementation "org.springframework.cloud:spring-cloud-starter-gateway:$gatewayVersion"
implementation "com.alibaba.cloud:spring-cloud-starter-alibaba-nacos-discovery:$nacosVersion"
implementation "org.springframework.cloud:spring-cloud-starter-loadbalancer:$loadbalancerVersion"
implementation "cn.hutool:hutool-all:$hutoolVersion"
implementation "io.jsonwebtoken:jjwt:$jwtVersion"
implementation "com.google.code.gson:gson:$gsonVersion"
// 为了解决 使用了slf4j 注解后 编译 log 符号不存在报错
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion"
testCompileOnly "org.projectlombok:lombok:$lombokVersion"
}
// 解决编译时中文乱码问题
tasks.withType(JavaCompile) {
options.encoding = "utf-8"
}
tasks.withType(Javadoc) {
options.encoding = "utf-8"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。