-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
41 lines (34 loc) · 924 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
34
35
36
37
38
39
40
plugins {
id 'com.gradle.plugin-publish' version '1.2.0'
id 'java-gradle-plugin'
id 'groovy'
id 'maven-publish'
id 'signing'
}
apply from: 'gradle/check.gradle'
apply from: 'gradle/functional-tests.gradle'
apply from: 'gradle/publish.gradle'
apply from: 'gradle/publish-plugin.gradle'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.codehaus.groovy:groovy-all:3.0.18'
implementation 'org.apache.commons:commons-lang3:3.13.0'
testImplementation gradleTestKit()
testImplementation('org.spockframework:spock-core:2.3-groovy-4.0') {
exclude module: 'groovy-all'
}
}
gradlePlugin {
testSourceSets(sourceSets.functionalTest)
plugins {
syntasticPlugin {
id = project.properties['group']
implementationClass = 'com.scuilion.gradle.plugins.syntastic.SyntasticPlugin'
}
}
}
java {
withSourcesJar()
}