forked from silently9527/Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (31 loc) · 823 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
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.6.5'
}
group 'cn.silently9527'
version '1.0.2'
sourceCompatibility = 1.8
repositories {
maven {
url 'https://maven.aliyun.com/nexus/content/groups/public'
}
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'cn.hutool', name: 'hutool-http', version: '5.5.7'
compile group: 'com.google.zxing', name: 'core', version: '3.1.0'
compile group: 'com.google.zxing', name: 'javase', version: '3.1.0'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2019.1'
intellij.updateSinceUntilBuild false
}
patchPluginXml {
changeNotes """
Toolset-1.0.0"""
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}