-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (25 loc) · 1.08 KB
/
build.gradle
File metadata and controls
29 lines (25 loc) · 1.08 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
// Copyright © 2025 MarkLogic Corporation. All Rights Reserved.
plugins {
id "java-library"
}
dependencies {
implementation project(':marklogic-client-api')
implementation "jakarta.xml.bind:jakarta.xml.bind-api:4.0.4"
// The 'api' configuration is used so that the test configuration in marklogic-client-api doesn't have to declare
// all of these dependencies. This library project won't otherwise be depended on by anything else as it's not
// setup for publishing.
api "com.squareup.okhttp3:okhttp:${okhttpVersion}"
api 'io.github.rburgst:okhttp-digest:3.1.1'
api 'org.slf4j:slf4j-api:2.0.17'
api "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
api 'org.jdom:jdom2:2.0.6.1'
api 'org.dom4j:dom4j:2.2.0'
api 'com.google.code.gson:gson:2.13.2'
api 'net.sourceforge.htmlcleaner:htmlcleaner:2.29'
api ('com.opencsv:opencsv:5.12.0') {
// Excluding this due to a security vulnerability, and the test for the example that uses this library
// passes without this on the classpath.
exclude module: "commons-beanutils"
}
api 'org.apache.commons:commons-lang3:3.19.0'
}