-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
50 lines (41 loc) · 1.15 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
plugins {
id 'java'
id 'java-library'
id 'jacoco'
}
group 'com.github.hmcts'
version 'DEV-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
mavenLocal()
maven { url 'https://jitpack.io' }
jcenter()
}
task highLevelDataSetup(type: JavaExec) {
mainClass = "uk.gov.hmcts.reform.civil.HighLevelDataSetupApp"
classpath += sourceSets.main.runtimeClasspath
jvmArgs = ['--add-opens=java.base/java.lang.reflect=ALL-UNNAMED']
}
def versions = [
junit : '5.10.1',
junitPlatform : '1.10.1'
]
ext.libraries = [
junit5: [
"org.junit.jupiter:junit-jupiter-api:${versions.junit}",
"org.junit.jupiter:junit-jupiter-engine:${versions.junit}",
"org.junit.jupiter:junit-jupiter-params:${versions.junit}",
"org.junit.platform:junit-platform-commons:${versions.junitPlatform}",
"org.junit.platform:junit-platform-engine:${versions.junitPlatform}"
]
]
dependencies {
implementation group: 'com.github.hmcts', name: 'befta-fw', version: '8.8.0'
implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.9'
testImplementation libraries.junit5
}