加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1015 Bytes
一键复制 编辑 原始数据 按行查看 历史
plugins {
id 'application'
id "com.github.ben-manes.versions" version "0.21.0"
id "org.nosphere.apache.rat" version "0.4.0"
id 'net.researchgate.release' version '2.8.0'
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
}
apply from: "gradle/missioncontrol.gradle"
group = 'com.github.chrishantha.jfr'
version = '0.0.4-SNAPSHOT'
description = "Create Flame Graphs using Java Flight Recordings"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
jcenter()
}
dependencies {
implementation findMcJars()
implementation "com.beust:jcommander:1.72"
implementation "com.google.code.gson:gson:2.8.5"
testImplementation "junit:junit:4.12"
}
rat {
excludes = ["**/.gradle/**", "**/gradle/**", "**/*.gradle", "**/gradlew*", "**/build/**", "**/.idea/**", "**/*.iml",
"**/*.md", ".travis.yml"]
}
mainClassName = 'com.github.chrishantha.jfr.flamegraph.output.Application'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化