-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
40 lines (32 loc) · 1.61 KB
/
build.gradle
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
buildscript {
apply from: 'https://raw.githubusercontent.com/blackducksoftware/integration-resources/master/gradle_common/buildscript-repositories.gradle', to: buildscript
apply from: 'https://raw.githubusercontent.com/blackducksoftware/integration-resources/master/gradle_common/buildscript-cgp-version.gradle'
ext {
javaTargetCompatibility = 8
javaSourceCompatibility = 8
}
dependencies { classpath "com.blackduck.integration:common-gradle-plugin:${managedCgpVersion}" }
}
project.ext.moduleName = 'com.blackduck.integration.integration-common'
project.ext.javaUseAutoModuleName = 'true'
version = '27.0.2-SNAPSHOT'
description = 'The base library for all other integration libraries to encompass and export common dependencies and code.'
apply plugin: 'com.blackduck.integration.library'
dependencies {
api 'org.apache.httpcomponents:httpclient:4.5.14'
api 'org.apache.httpcomponents:httpmime:4.5.14'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'org.apache.commons:commons-text:1.10.0'
api 'commons-io:commons-io:2.11.0'
api 'org.apache.commons:commons-compress:1.26.1'
api 'commons-codec:commons-codec:1.15'
api 'commons-beanutils:commons-beanutils:1.9.4'
api 'org.apache.commons:commons-collections4:4.4'
api 'com.google.code.gson:gson:2.10.1'
api 'org.jetbrains:annotations:24.0.1'
api 'com.jayway.jsonpath:json-path:2.9.0'
api 'org.slf4j:slf4j-api:2.0.7'
api 'com.flipkart.zjsonpatch:zjsonpatch:0.4.16'
implementation 'org.junit.jupiter:junit-jupiter-api:5.7.1'
testImplementation 'com.squareup.okhttp3:mockwebserver:4.10.0'
}