-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
71 lines (54 loc) · 1.96 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
ext {
codebeamerVersion = "2.1.0.1-SNAPSHOT2"
}
allprojects {
group = 'com.intland.customization'
version = codebeamerVersion
}
subprojects {
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
compileJava {
options.deprecation = false
options.warnings = false
options.debug = true
options.debugOptions.debugLevel = "source,lines,vars"
}
compileTestJava {
options.deprecation = false
options.warnings = false
options.debug = true
options.debugOptions.debugLevel = "source,lines,vars"
}
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://maven.codebeamer.com/3rdparty"
}
maven {
url "https://maven.codebeamer.com/release"
}
maven {
url "https://maven.codebeamer.com/snapshot"
}
}
dependencies {
implementation group: 'com.intland.codebeamer', name: 'cb', version: codebeamerVersion
implementation group: 'com.intland.codebeamer', name: 'cb-common', version: codebeamerVersion
implementation group: 'com.intland.codebeamer', name: 'cb-api-public', version: codebeamerVersion
implementation group: 'com.intland.codebeamer', name: 'cb-file-processing', version: codebeamerVersion
implementation group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.10.1'
testRuntimeOnly group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.10.1'
}
test {
useJUnitPlatform()
}
}