-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
46 lines (37 loc) · 1.04 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
//plugins {
// id 'java'
//}
allprojects {
apply plugin: 'idea'
group 'edu.pku'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
}
subprojects{
apply plugin: 'java'
sourceCompatibility = '11'
targetCompatibility = '11'
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
implementation 'org.atteo.classindex:classindex:3.10'
implementation 'org.slf4j:slf4j-log4j12:2.0.0-alpha2'
implementation('org.jgrapht:jgrapht-core:1.5.0') {
force = true
}
implementation 'org.jgrapht:jgrapht-io:1.5.0'
implementation 'commons-io:commons-io:2.8.0'
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'io.github.bonede:tree-sitter:0.21.0'
}
test {
useJUnitPlatform()
}
}
configure(subprojects.findAll { it.name != 'core' }) {
dependencies {
implementation project(':core')
}
}