-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
107 lines (86 loc) · 3.98 KB
/
Copy pathlibs.versions.toml
File metadata and controls
107 lines (86 loc) · 3.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[versions]
## AboutBits Libraries ##
checkstyleConfig = "2.0.0-RC2"
# Axion Release Plugin #
axionReleasePlugin = "1.21.1"
## Libraries ##
jooq = "3.21.4"
jSpecify = "1.0.0"
lombok = "1.18.46"
postgresql = "42.7.11"
quarkiverse-helm = "1.4.0"
scram-client = "3.2"
## Testing ##
assertj = "3.27.7"
checkstyle = "13.4.2"
datafaker = "2.5.4"
errorProne = "2.49.0"
errorPronePlugin = "5.1.0"
nullAway = "0.13.4"
[plugins]
# https://github.com/allegro/axion-release-plugin
# https://axion-release-plugin.readthedocs.io/
axionReleasePlugin = { id = "pl.allegro.tech.build.axion-release", version.ref = "axionReleasePlugin" }
# https://github.com/tbroyer/gradle-errorprone-plugin
# https://mvnrepository.com/artifact/net.ltgt.errorprone/net.ltgt.errorprone.gradle.plugin
errorPronePlugin = { id = "net.ltgt.errorprone", version.ref = "errorPronePlugin" }
# https://www.jooq.org/doc/latest/manual/code-generation/codegen-execution/codegen-gradle/
# https://github.com/jOOQ/jOOQ/tree/main/jOOQ-codegen-gradle
# https://mvnrepository.com/artifact/org.jooq.jooq-codegen-gradle/org.jooq.jooq-codegen-gradle.gradle.plugin
jooqPlugin = { id = "org.jooq.jooq-codegen-gradle", version.ref = "jooq" }
[libraries]
## AboutBits Libraries ##
# https://github.com/aboutbits/java-checkstyle-config
checkstyleConfig = { group = "it.aboutbits", name = "java-checkstyle-config", version.ref = "checkstyleConfig" }
## Libraries ##
# jOOQ #
# https://www.jooq.org/
# https://www.jooq.org/download/versions
# https://github.com/jOOQ/jOOQ
# https://mvnrepository.com/artifact/org.jooq/jooq
jooq = { group = "org.jooq", name = "jooq", version.ref = "jooq" }
jooqMeta = { group = "org.jooq", name = "jooq-meta", version.ref = "jooq" }
# jSpecify #
# https://jspecify.dev/
# https://github.com/jspecify/jspecify
# https://mvnrepository.com/artifact/org.jspecify/jspecify
jspecify = { group = "org.jspecify", name = "jspecify", version.ref = "jSpecify" }
# Lombok #
# https://projectlombok.org/
# https://github.com/projectlombok/lombok
# https://mvnrepository.com/artifact/org.projectlombok/lombok
lombok = { group = "org.projectlombok", name = "lombok", version.ref = "lombok" }
# PostgreSQL #
# https://jdbc.postgresql.org/
# https://github.com/pgjdbc/pgjdbc
# https://mvnrepository.com/artifact/org.postgresql/postgresql
postgresql = { group = "org.postgresql", name = "postgresql", version.ref = "postgresql" }
# Quarkiverse Helm #
# https://docs.quarkiverse.io/quarkus-helm/dev/
# https://github.com/quarkiverse/quarkus-helm
# https://mvnrepository.com/artifact/io.quarkiverse.helm/quarkus-helm
quarkiverse-helm = { group = "io.quarkiverse.helm", name = "quarkus-helm", version.ref = "quarkiverse-helm" }
# SCRAM - Salted Challenge Response Authentication Mechanism #
# https://github.com/ongres/scram
# https://mvnrepository.com/artifact/com.ongres.scram/scram-client
scram-client = { group = "com.ongres.scram", name = "scram-client", version.ref = "scram-client" }
## Testing ##
# https://assertj.github.io/
# https://github.com/assertj/assertj
# https://mvnrepository.com/artifact/org.assertj/assertj-core
assertj = { group = "org.assertj", name = "assertj-core", version.ref = "assertj" }
# https://checkstyle.org/
# https://github.com/checkstyle/checkstyle
# https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle
checkstyle = { group = "com.puppycrawl.tools", name = "checkstyle", version.ref = "checkstyle" }
# https://datafaker.net/
# https://github.com/datafaker-net/datafaker
# https://mvnrepository.com/artifact/net.datafaker/datafaker
datafaker = { group = "net.datafaker", name = "datafaker", version.ref = "datafaker" }
# https://errorprone.info/
# https://github.com/google/error-prone
# https://mvnrepository.com/artifact/com.google.errorprone/error_prone_core
errorProne = { group = "com.google.errorprone", name = "error_prone_core", version.ref = "errorProne" }
# https://github.com/uber/NullAway
# https://mvnrepository.com/artifact/com.uber.nullaway/nullaway
nullAway = { group = "com.uber.nullaway", name = "nullaway", version.ref = "nullAway" }