-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (37 loc) · 1.3 KB
/
build.gradle
File metadata and controls
45 lines (37 loc) · 1.3 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
plugins {
id 'io.nextflow.nextflow-plugin' version '0.0.1-alpha3'
}
dependencies {
implementation 'org.json:json:20240303'
implementation 'dev.harrel:json-schema:1.5.0'
implementation 'com.sanctionco.jmail:jmail:1.6.3' // Needed for e-mail format validation
// Apache POI dependencies for Excel support
implementation 'org.apache.poi:poi:5.4.1'
implementation 'org.apache.poi:poi-ooxml:5.4.1'
implementation 'org.apache.poi:poi-scratchpad:5.4.1'
}
version = '2.5.1'
nextflowPlugin {
nextflowVersion = '25.04.0'
provider = 'nextflow'
className = 'nextflow.validation.ValidationPlugin'
extensionPoints = [
'nextflow.validation.config.ValidationConfig',
'nextflow.validation.ValidationExtension',
'nextflow.validation.ValidationObserverFactory'
]
publishing {
github {
repository = 'nextflow-io/nf-schema'
userName = project.findProperty('github_username')
authToken = project.findProperty('github_access_token')
email = project.findProperty('github_commit_email')
indexUrl = 'https://github.com/nextflow-io/plugins/blob/main/plugins.json'
}
}
test {
jvmArgs += [
'--add-opens', 'java.base/sun.net.www.protocol.ftp=ALL-UNNAMED'
]
}
}