-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (38 loc) · 919 Bytes
/
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
plugins {
id "java"
id "idea"
}
version = '1.0'
idea.project {
jdkName = '21'
languageLevel = JavaVersion.VERSION_21
vcs = 'Git'
}
allprojects {
apply plugin: 'idea'
group="mills"
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
plugins.withType(JavaPlugin) {
idea {
module {
outputDir file('build/idea/main')
testOutputDir file('build/idea/test')
}
}
dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '+'
}
}
}
dependencies {
implementation project(':core')
implementation project(':index')
implementation project(':scores')
}