-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbuild.gradle
33 lines (27 loc) · 949 Bytes
/
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
plugins {
id 'io.nextflow.nextflow-plugin' version '0.0.1-alpha2'
}
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
}
version = '2.4.1'
nextflowPlugin {
nextflowVersion = '24.10.0'
provider = 'nextflow'
className = 'nextflow.validation.ValidationPlugin'
extensionPoints = [
'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'
}
}
}