-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
52 lines (43 loc) · 982 Bytes
/
build.gradle
File metadata and controls
52 lines (43 loc) · 982 Bytes
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
plugins {
id 'java'
id 'antlr'
id 'java-library'
}
group 'org.interpython'
version '3.0.0'
repositories {
mavenCentral()
}
configurations {
compile {
extendsFrom = extendsFrom.findAll { it != configurations.antlr }
}
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
antlr "org.antlr:antlr4:4.12.0" // use ANTLR version 4
compile "org.antlr:antlr4-runtime:4.12.0"
implementation('org.ow2.asm:asm:7.1')
}
generateGrammarSource {
maxHeapSize = "64m"
outputDirectory = file("src/generated/java/org/interpython/antlr")
arguments += ["-visitor"]
}
sourceSets {
main {
antlr {
srcDirs = ['grammar']
}
java {
srcDirs = ['src/main/java', 'src/generated/java']
}
}
}
clean{
delete "src/generated/java/org/interpython/antlr"
}
test {
useJUnitPlatform()
}