-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
34 lines (26 loc) · 781 Bytes
/
build.gradle
File metadata and controls
34 lines (26 loc) · 781 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
apply plugin: 'application'
apply plugin: 'java-library'
apply plugin: 'antlr'
group = 'org.comroid'
version = '0-SNAPSHOT'
generateGrammarSource {
arguments += ['-visitor', '-package', 'org.comroid.actionscript.grammar']
}
repositories {
maven { url = 'https://maven.comroid.org' }
mavenCentral()
}
dependencies {
implementation project(':japi')
antlr "org.antlr:antlr4:4.13.2"
// lombok
api 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:+'
testImplementation 'org.projectlombok:lombok:1.18.30'
testAnnotationProcessor 'org.projectlombok:lombok:+'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:+'
testImplementation 'org.easymock:easymock:+'
}
test {
useJUnitPlatform()
}