-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
28 lines (20 loc) · 1.01 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
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.int-jira-common'
project.ext.javaUseAutoModuleName = 'true'
version = '5.0.1-SNAPSHOT'
description = 'A library for using various capabilities of Jira.'
apply plugin: 'com.blackduck.integration.library'
dependencies {
api 'com.blackduck.integration:integration-rest:11.0.0'
api 'com.google.oauth-client:google-oauth-client:1.34.1'
testImplementation 'org.mockito:mockito-core:2.18.3'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.4.2'
}