Ai
1 Star 0 Fork 0

码上就来/aliyun-http-analysis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
xieyu 提交于 2021-09-11 18:12 +08:00 . 修改启动命令
plugins {
id 'java'
id 'java-library'
id "idea"
}
jar {
manifest {
attributes 'Main-Class': 'link.xieyu.AnalysisRun'
}
from {
configurations.runtimeClasspath.filter{ it.exists() }.collect { it.isDirectory() ? it : zipTree(it) }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}
configurations {
// configuration that holds jars to include in the jar
extraLibs
}
group 'link.xieyu'
version '0.0.1-SNAPSHOT'
apply plugin: 'java'
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
/**
* 指定编码类型
*/
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
dependencies {
implementation 'org.slf4j:slf4j-api:1.7.32'
runtimeOnly 'org.slf4j:slf4j-log4j12:1.7.32'
implementation 'com.aliyun:alidns20150109:2.0.1'
implementation 'cn.hutool:hutool-all:5.7.12'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/code-gogogo/aliyun-http-analysis.git
git@gitee.com:code-gogogo/aliyun-http-analysis.git
code-gogogo
aliyun-http-analysis
aliyun-http-analysis
master

搜索帮助