-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
33 lines (28 loc) · 1.98 KB
/
libs.versions.toml
File metadata and controls
33 lines (28 loc) · 1.98 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
# Version Catalog (toml file)
# Learn about this file at: https://docs.gradle.org/current/userguide/platforms.html#sub::toml-dependencies-format
# If you make changes to this file, you'll first need either:
# * click the "Reload All Gradle Projects" button in IntelliJ
# * or run ./gradlew
# to regenerate the java files (under the <root>/.gradle folder) which is then used by the build.gradle.kts file(s).
[versions]
hamcrest = "3.0"
junit-jupiter = "5.14.3"
pmd = "7.22.0" # !!! IMPORTANT !!! KEEP THIS IN SYNC WITH PMD_VERSION INSIDE OF: src/constants.ts
# For the following: Keep in sync with whatever pmd-core pulls in. Basically, we don't want duplicates in our java-lib folder.
# To see pmd-core's dependencies, go to https://mvnrepository.com/artifact/net.sourceforge.pmd/pmd-core
slf4j-nop = "1.7.36" # (Keep in sync with pmd-core > slf4j-api version). For now, we throw slf4j logs away (using this no-op module). We might use an actual logger in the future.
gson = "2.13.2" # (Keep in sync with pmd-core > gson version).
[libraries]
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
hamcrest = { module = "org.hamcrest:hamcrest", version.ref = "hamcrest" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
pmd-apex = { module = "net.sourceforge.pmd:pmd-apex", version.ref = "pmd" }
pmd-core = { module = "net.sourceforge.pmd:pmd-core", version.ref = "pmd" }
pmd-html = { module = "net.sourceforge.pmd:pmd-html", version.ref = "pmd" }
pmd-javascript = { module = "net.sourceforge.pmd:pmd-javascript", version.ref = "pmd" }
pmd-test = { module = "net.sourceforge.pmd:pmd-test", version.ref = "pmd" }
pmd-visualforce = { module = "net.sourceforge.pmd:pmd-visualforce", version.ref = "pmd" }
pmd-xml = { module = "net.sourceforge.pmd:pmd-xml", version.ref = "pmd" }
slf4j-nop = { module = "org.slf4j:slf4j-nop", version.ref = "slf4j-nop" }
[bundles]
pmd7 = ["pmd-apex", "pmd-core", "pmd-html", "pmd-javascript", "pmd-visualforce", "pmd-xml"]