-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (25 loc) · 906 Bytes
/
build.gradle
File metadata and controls
31 lines (25 loc) · 906 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
group 'in.oneton'
version '0.0.0'
apply plugin: 'groovy'
apply plugin: 'java'
sourceCompatibility = 1.8
sourceSets {
util
}
repositories {
jcenter()
}
dependencies {
utilCompile project(':common')
utilCompile 'org.codehaus.groovy:groovy-all:2.3.11'
utilCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
utilCompile group: 'commons-io', name: 'commons-io', version: '2.5'
utilCompile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.8.4'
utilCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.4'
utilCompile group: 'org.springframework', name: 'spring-core', version: '4.3.4.RELEASE'
}
task regenerate(type: JavaExec) {
description 'Regenerates plugin'
main = 'in.oneton.snippet.util.vscode.RegeneratePlugin'
classpath = sourceSets.util.runtimeClasspath
}