-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
55 lines (45 loc) · 1.12 KB
/
Copy pathbuild.gradle
File metadata and controls
55 lines (45 loc) · 1.12 KB
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
53
54
55
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
plugins {
id 'java'
id 'application'
id 'antlr'
id 'org.jetbrains.kotlin.jvm'
}
group = 'io.github.gallvp'
version = '0.0.3'
description = 'pytest2nf-test: Converts a Nextflow component pytest to nf-test'
repositories {
mavenCentral()
}
dependencies {
antlr 'org.antlr:antlr4:4.9.2'
implementation 'org.antlr:antlr4-runtime:4.9.2'
implementation 'org.apache.groovy:groovy:4.0.24'
implementation 'org.slf4j:slf4j-api:2.0.16'
implementation 'ch.qos.logback:logback-classic:1.5.16'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.yaml:snakeyaml:2.2'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
application {
mainClass = 'io.github.gallvp.converter.TestConverter'
}
generateGrammarSource {
outputDirectory = file("${projectDir}/src/main/java/nextflow/script/parser")
}
kotlin {
jvmToolchain(17)
}
compileKotlin {
dependsOn(generateGrammarSource)
}
compileTestKotlin {
dependsOn(generateTestGrammarSource)
}
test {
useJUnitPlatform()
}