blob: da8920ae383f97593dde86064ee28b36ef8aa916 [file] [log] [blame]
Matthias Sohnbf201be2023-04-14 18:12:42 +02001target "dependencies"
2
Matthias Sohn6890b8f2023-05-01 14:58:23 +02003
4maven apache
5 scope = compile
6 dependencyDepth = none
7 missingManifest = error
8 includeSources
9{
10 dependency {
Matthias Sohnf3cb30f2023-05-01 16:27:28 +020011 groupId = "commons-codec"
12 artifactId = "commons-codec"
Matthias Sohn39dc6ff2024-08-28 01:47:45 +020013 version = "1.17.1"
Matthias Sohnf3cb30f2023-05-01 16:27:28 +020014 }
15 dependency {
Matthias Sohn6890b8f2023-05-01 14:58:23 +020016 groupId = "org.apache.commons"
17 artifactId = "commons-compress"
Ed Merks4a6d04b2024-05-24 17:41:55 +020018 version = "1.26.2"
19 }
20 dependency {
21 groupId = "org.apache.commons"
22 artifactId = "commons-lang3"
23 version = "3.14.0"
Matthias Sohn1fd8b0f2024-02-20 17:00:22 +010024 }
25 dependency {
26 groupId = "commons-io"
27 artifactId = "commons-io"
Matthias Sohn1f8f86e2024-05-20 23:06:06 +020028 version = "2.16.1"
Matthias Sohn6890b8f2023-05-01 14:58:23 +020029 }
Matthias Sohn04ca8132023-05-16 02:01:14 +020030 dependency {
31 groupId = "commons-logging"
32 artifactId = "commons-logging"
Matthias Sohn3f06dd92024-08-28 01:53:53 +020033 version = "1.3.4"
Matthias Sohn04ca8132023-05-16 02:01:14 +020034 }
Matthias Sohn6890b8f2023-05-01 14:58:23 +020035}
36
Matthias Sohn4aa89da2023-05-15 23:58:25 +020037maven args4j
38 scope = compile
39 dependencyDepth = none
40 missingManifest = error
41 includeSources
42{
43 dependency {
44 groupId = "args4j"
45 artifactId = "args4j"
Matthias Sohn31a76e42024-05-13 00:56:20 +020046 version = "2.37"
Matthias Sohn4aa89da2023-05-15 23:58:25 +020047 }
48}
49
Matthias Sohn18cb13c2023-05-01 17:32:28 +020050maven assertj
51 scope = compile
52 dependencyDepth = none
53 missingManifest = error
54 includeSources
55{
56 dependency {
57 groupId = "org.assertj"
58 artifactId = "assertj-core"
Ed Merksa7cf5672024-05-27 17:49:07 +020059 version = "3.26.0"
Matthias Sohn18cb13c2023-05-01 17:32:28 +020060 }
61}
62
Matthias Sohnbf201be2023-04-14 18:12:42 +020063maven bouncycastle
64 scope = compile
65 dependencyDepth = none
66 missingManifest = error
67 includeSources
68{
69 dependency {
70 groupId = "org.bouncycastle"
71 artifactId = "bcpg-jdk18on"
Thomas Wolf5c0c18f2024-05-11 14:11:17 +020072 version = "1.78.1"
Matthias Sohnbf201be2023-04-14 18:12:42 +020073 }
74 dependency {
75 groupId = "org.bouncycastle"
76 artifactId = "bcprov-jdk18on"
Thomas Wolf5c0c18f2024-05-11 14:11:17 +020077 version = "1.78.1"
Matthias Sohnbf201be2023-04-14 18:12:42 +020078 }
79 dependency {
80 groupId = "org.bouncycastle"
81 artifactId = "bcpkix-jdk18on"
Thomas Wolf5c0c18f2024-05-11 14:11:17 +020082 version = "1.78.1"
Matthias Sohnbf201be2023-04-14 18:12:42 +020083 }
84 dependency {
85 groupId = "org.bouncycastle"
86 artifactId = "bcutil-jdk18on"
Thomas Wolf5c0c18f2024-05-11 14:11:17 +020087 version = "1.78.1"
Matthias Sohnbf201be2023-04-14 18:12:42 +020088 }
89}
Matthias Sohn45de4fa2023-04-22 00:03:56 +020090
Matthias Sohne5325092023-05-17 22:22:32 +020091maven bytebuddy
92 scope = compile
93 dependencyDepth = none
94 missingManifest = error
95 includeSources
96{
97 dependency {
98 groupId = "net.bytebuddy"
99 artifactId = "byte-buddy"
Matthias Sohn077a7132024-07-02 00:26:44 +0200100 version = "1.14.17"
Matthias Sohne5325092023-05-17 22:22:32 +0200101 }
102 dependency {
103 groupId = "net.bytebuddy"
104 artifactId = "byte-buddy-agent"
Matthias Sohn077a7132024-07-02 00:26:44 +0200105 version = "1.14.17"
Matthias Sohne5325092023-05-17 22:22:32 +0200106 }
107}
108
Matthias Sohn7e67fe12023-05-15 23:40:17 +0200109maven gson
110 scope = compile
111 dependencyDepth = none
112 missingManifest = error
113 includeSources
114{
115 dependency {
116 groupId = "com.google.code.gson"
117 artifactId = "gson"
Ed Merks6123c812024-05-22 08:46:31 +0200118 version = "2.11.0"
Matthias Sohn7e67fe12023-05-15 23:40:17 +0200119 }
120}
121
Matthias Sohn4562e792023-05-16 02:06:10 +0200122maven hamcrest
123 scope = compile
124 dependencyDepth = none
125 missingManifest = error
126 includeSources
127{
128 dependency {
129 groupId = "org.hamcrest"
130 artifactId = "hamcrest"
131 version = "2.2"
132 }
133}
134
Matthias Sohnee2143f2023-05-01 11:38:36 +0200135maven javaewah
136 scope = compile
137 dependencyDepth = none
138 missingManifest = error
139 includeSources
140{
141 dependency {
142 groupId = "com.googlecode.javaewah"
143 artifactId = "JavaEWAH"
144 version = "1.2.3"
145 }
146}
147
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200148maven jetty
149 scope = compile
150 dependencyDepth = none
151 missingManifest = error
152 includeSources
153{
154 dependency {
David Ostrovsky026d46d2024-05-05 10:56:32 +0200155 groupId = "org.eclipse.jetty.ee10"
156 artifactId = "jetty-ee10-servlet"
Matthias Sohn3aff2532024-07-02 00:12:43 +0200157 version = "12.0.10"
David Ostrovsky026d46d2024-05-05 10:56:32 +0200158 }
159 dependency {
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200160 groupId = "org.eclipse.jetty"
161 artifactId = "jetty-http"
Matthias Sohn19da1642024-08-28 08:49:51 +0200162 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200163 }
164 dependency {
165 groupId = "org.eclipse.jetty"
166 artifactId = "jetty-io"
Matthias Sohn19da1642024-08-28 08:49:51 +0200167 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200168 }
169 dependency {
170 groupId = "org.eclipse.jetty"
171 artifactId = "jetty-security"
Matthias Sohn19da1642024-08-28 08:49:51 +0200172 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200173 }
174 dependency {
175 groupId = "org.eclipse.jetty"
176 artifactId = "jetty-server"
Matthias Sohn19da1642024-08-28 08:49:51 +0200177 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200178 }
179 dependency {
180 groupId = "org.eclipse.jetty"
David Ostrovsky026d46d2024-05-05 10:56:32 +0200181 artifactId = "jetty-session"
Matthias Sohn19da1642024-08-28 08:49:51 +0200182 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200183 }
184 dependency {
185 groupId = "org.eclipse.jetty"
186 artifactId = "jetty-util"
Matthias Sohn19da1642024-08-28 08:49:51 +0200187 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200188 }
189 dependency {
190 groupId = "org.eclipse.jetty"
191 artifactId = "jetty-util-ajax"
Matthias Sohn19da1642024-08-28 08:49:51 +0200192 version = "12.0.12"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200193 }
194 dependency {
Matthias Sohn93e31472023-04-30 23:32:50 +0200195 groupId = "jakarta.servlet"
196 artifactId = "jakarta.servlet-api"
David Ostrovsky026d46d2024-05-05 10:56:32 +0200197 version = "6.0.0"
Matthias Sohn45de4fa2023-04-22 00:03:56 +0200198 }
199}
Matthias Sohn84461e82023-05-01 23:33:00 +0200200
Matthias Sohnca069662023-05-16 00:18:45 +0200201maven jna
202 scope = compile
203 dependencyDepth = none
204 missingManifest = error
205 includeSources
206{
207 dependency {
208 groupId = "net.java.dev.jna"
209 artifactId = "jna"
Matthias Sohn81f1c022023-12-16 00:23:47 +0100210 version = "5.14.0"
Matthias Sohnca069662023-05-16 00:18:45 +0200211 }
212 dependency {
213 groupId = "net.java.dev.jna"
214 artifactId = "jna-platform"
Matthias Sohn81f1c022023-12-16 00:23:47 +0100215 version = "5.14.0"
Matthias Sohnca069662023-05-16 00:18:45 +0200216 }
217}
218
Matthias Sohndceebe32023-07-01 08:55:42 +0200219maven mockito
220 scope = compile
221 dependencyDepth = none
222 missingManifest = error
223 includeSources
224{
225 dependency {
226 groupId = "org.mockito"
227 artifactId = "mockito-core"
Matthias Sohn003ddfb2024-05-13 01:31:12 +0200228 version = "5.12.0"
Matthias Sohndceebe32023-07-01 08:55:42 +0200229 }
230}
231
Thomas Wolf913e6cf2023-04-03 19:33:24 +0200232maven sshd
233 scope = compile
234 dependencyDepth = none
235 missingManifest = error
236 includeSources
237{
238 dependency {
239 groupId = "org.apache.sshd"
240 artifactId = "sshd-osgi"
Thomas Wolf299a7342024-08-10 19:36:50 +0200241 version = "2.13.2"
Thomas Wolf913e6cf2023-04-03 19:33:24 +0200242 }
243 dependency {
244 groupId = "org.apache.sshd"
245 artifactId = "sshd-sftp"
Thomas Wolf299a7342024-08-10 19:36:50 +0200246 version = "2.13.2"
Thomas Wolf913e6cf2023-04-03 19:33:24 +0200247 }
248}
249
Matthias Sohn84461e82023-05-01 23:33:00 +0200250maven slf4j
251 scope = compile
252 dependencyDepth = none
253 missingManifest = error
254 includeSources
255{
256 dependency {
257 groupId = "org.slf4j"
258 artifactId = "slf4j-api"
259 version = "1.7.36"
260 }
261 dependency {
262 groupId = "org.slf4j"
263 artifactId = "slf4j-simple"
264 version = "1.7.36"
265 }
266}
Matthias Sohnb3dcf632023-05-16 00:03:28 +0200267
268maven xz
269 scope = compile
270 dependencyDepth = none
271 missingManifest = error
272 includeSources
273{
274 dependency {
275 groupId = "org.tukaani"
276 artifactId = "xz"
277 version = "1.9"
278 }
279}