-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathbuild.gradle
56 lines (42 loc) · 1.5 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.1.2'
}
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'org.jetbrains.intellij'
sourceCompatibility = 1.8
targetCompatibility = 1.8
intellij {
// IC-2016.1
// version 'IU-2018.3' //IntelliJ IDEA dependency
pluginName.set('codehelper.generator')
version.set('2018.3')
type.set('IC')
downloadSources.set(true)
updateSinceUntilBuild.set(false)
// plugins.set('coverage') //Bundled plugin dependencies
// sandboxDirectory.set('sandbox')
//
plugins = ['Kotlin', 'org.nik.presentation-assistant:1.0.1', 'Lombook Plugin:0.31-2018.3', 'Groovy']
//
// sandboxDirectory.set('sandbox')
}
dependencies{
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.8.5'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.5'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
compile group: 'uk.com.robust-it', name: 'cloning', version: '1.9.3'
testCompile "org.assertj:assertj-core:2.2.0"
}
group 'org.jetbrains'
version '2024.02.03' // Plugin version
//./gradlew build -x test -Dorg.gradle.java.home=/Library/Java/JavaVirtualMachines/jdk1.8.0_211.jdk/Contents/Home