forked from x-hansong/CodeMaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
45 lines (37 loc) · 848 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
41
42
43
44
buildscript {
repositories {
maven { url 'http://dl.bintray.com/jetbrains/intellij-plugin-service' }
}
}
plugins {
id "org.jetbrains.intellij" version "0.2.10"
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.14'
compile group: 'commons-io', name: 'commons-io', version: '2.5'
}
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
main {
java.srcDirs 'src'
resources.srcDirs 'resources'
}
test {
java.srcDirs 'test'
resources.srcDirs 'test-resources'
}
}
intellij {
version 'IU-171.3780.107'
pluginName 'CodeMaker'
updateSinceUntilBuild false
plugins = ["org.intellij.scala:2017.1.15"]
}
group 'com.xiaohansong'
version '1.2'