-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (34 loc) · 1.25 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
41
42
43
44
45
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'
dependencies { classpath "com.blackduck.integration:common-gradle-plugin:${managedCgpVersion}" }
}
plugins {
id 'java'
}
ext {
javaSourceCompatibility = JavaVersion.VERSION_1_8
javaTargetCompatibility = JavaVersion.VERSION_1_8
}
tasks.compileJava {
options.release = 8
}
group 'com.blackduck.integration'
version = '4.1.3-SNAPSHOT'
apply plugin: 'com.blackduck.integration.library'
repositories {
mavenCentral()
}
dependencies {
implementation 'commons-codec:commons-codec:1.15'
implementation 'com.blackduck.integration:integration-rest:11.0.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.1'
testImplementation 'org.mockito:mockito-core:5.2.0'
testImplementation 'org.slf4j:slf4j-simple:2.0.11'
}
test {
useJUnitPlatform()
}
signing.required { false }