3 Star 12 Fork 4

Gitee 极速下载/btrace

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/btraceio/btrace
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
settings.gradle 2.96 KB
一键复制 编辑 原始数据 按行查看 历史
renovate[bot] 提交于 2025-05-13 15:55 +08:00 . Update asm to v9.8
rootProject.name = 'btrace-ng'
// Find the directories containing a "build.gradle" file in the root directory
// of the project. That is, every directory containing a "build.gradle" will
// be automatically the subproject of this project.
def subDirs = rootDir.listFiles(new FileFilter() {
boolean accept(File file) {
if (!file.isDirectory()) {
return false
}
if (file.name == 'buildSrc') {
return false
}
return new File(file, 'build.gradle').isFile()
}
})
subDirs.each { File dir ->
if (dir.name.startsWith("btrace-")) {
include dir.name
}
include "integration-tests"
include "benchmarks:agent-benchmark"
include "benchmarks:runtime-benchmarks"
}
dependencyResolutionManagement {
versionCatalogs {
libs {
// Families...
version('asm', '9.8')
version('jmh', '1.36')
version('jmhGradlePlugin', '0.7.3')
version('slf4j', '1.7.36')
version('junit', '5.11.4')
// *** Gradle plugins ***
plugin ('spotless', 'com.diffplug.spotless').version('6.11.0')
plugin ('versioning', 'net.nemerosa.versioning').version('2.15.1')
plugin ('ospackage', 'com.netflix.nebula.ospackage').version('11.10.0')
plugin ('shadow', 'com.github.johnrengelman.shadow').version('8.1.1')
plugin ('sdkman-vendors', 'io.sdkman.vendors').version('3.0.0')
plugin ('foojay-resolver', 'org.gradle.toolchains.foojay-resolver-convention').version('0.8.0')
plugin ('jmh', 'me.champeau.jmh').versionRef('jmhGradlePlugin')
// *** Libraries ***
// https://mvnrepository.com/artifact/com.google.auto.service
library ('autoService', 'com.google.auto.service', 'auto-service').version('1.1.1')
// https://mvnrepository.com/artifact/org.jctools
library ('jctools', 'org.jctools', 'jctools-core').version('4.0.5')
// https://mvnrepository.com/artifact/org.slf4j
library ('slf4j', 'org.slf4j', 'slf4j-api').versionRef('slf4j')
library ('slf4j-simple', 'org.slf4j', 'slf4j-simple').versionRef('slf4j')
// https://mvnrepository.com/artifact/org.ow2.asm
library ('asm', 'org.ow2.asm', 'asm').versionRef('asm')
library ('asm-tree', 'org.ow2.asm', 'asm-tree').versionRef('asm')
library ('asm-util', 'org.ow2.asm', 'asm-util').versionRef('asm')
// https://mvnrepository.com/artifact/org.openjdk.jmh
library ('jmh', 'org.openjdk.jmh', 'jmh-core').versionRef('jmh')
library ('jmh-annprocess', 'org.openjdk.jmh', 'jmh-generator-annprocess').versionRef('jmh')
// https://mvnrepository.com/artifact/org.junit.jupiter
library ('junit', 'org.junit', 'junit-bom').versionRef('junit')
library ('junit-jupiter', 'org.junit.jupiter', 'junit-jupiter').versionRef('junit')
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/mirrors/btrace.git
git@gitee.com:mirrors/btrace.git
mirrors
btrace
btrace
develop

搜索帮助