-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
73 lines (56 loc) · 2.57 KB
/
Copy pathlibs.versions.toml
File metadata and controls
73 lines (56 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright 2026, Datadog, Inc
[versions]
cpp-standard = "17"
kotlin = "1.9.22"
spotless = "8.8.0"
# Testing
junit = "5.9.3"
junit-platform = "1.9.3" # JUnit Platform version corresponding to JUnit Jupiter 5.9.2
junit-pioneer = "1.9.1"
slf4j = "2.0.18"
# Profiler runtime
jmc = "8.3.1"
jol = "0.17"
lz4 = "1.11.1"
snappy = "1.1.10.8"
zstd = "1.5.7-11"
# Code analysis
asm = "9.10.1"
# Datadog tracer (compileOnly for the chaos harness — runtime is provided by dd-java-agent).
# Dynamic version: always resolve to the latest released dd-trace-api so the chaos harness
# tracks current annotation/API surface without manual bumps.
dd-trace-api = "latest.release"
# Benchmarking
jmh = "1.37"
[libraries]
# JUnit 5
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
junit-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" }
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-platform" }
junit-pioneer = { module = "org.junit-pioneer:junit-pioneer", version.ref = "junit-pioneer" }
# Logging
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" }
# JFR and memory analysis
jmc-flightrecorder = { module = "org.openjdk.jmc:flightrecorder", version.ref = "jmc" }
jol-core = { module = "org.openjdk.jol:jol-core", version.ref = "jol" }
# Compression libraries
lz4 = { module = "at.yawk.lz4:lz4-java", version.ref = "lz4" }
snappy = { module = "org.xerial.snappy:snappy-java", version.ref = "snappy" }
zstd = { module = "com.github.luben:zstd-jni", version.ref = "zstd" }
# Bytecode analysis
asm = { module = "org.ow2.asm:asm", version.ref = "asm" }
# Datadog tracer API (annotations only; intercepted by dd-java-agent at runtime)
dd-trace-api = { module = "com.datadoghq:dd-trace-api", version.ref = "dd-trace-api" }
# JMH benchmarking
jmh-core = { module = "org.openjdk.jmh:jmh-core", version.ref = "jmh" }
jmh-annprocess = { module = "org.openjdk.jmh:jmh-generator-annprocess", version.ref = "jmh" }
[bundles]
# Core testing framework (JUnit + logging + launcher API for custom test runner)
testing = ["junit-api", "junit-engine", "junit-params", "junit-platform-launcher", "junit-pioneer", "slf4j-simple"]
# Profiler runtime dependencies (JFR analysis + compression)
profiler-runtime = ["jmc-flightrecorder", "jol-core", "lz4", "snappy", "zstd"]
# JMH benchmarking
jmh = ["jmh-core", "jmh-annprocess"]
[plugins]
spotless = { id = "com.diffplug.spotless", version.ref = "spotless" }