-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.gradle
60 lines (48 loc) · 1.23 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
57
58
59
60
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.17.4'
}
group 'com.github.aqiu202.ideayapi'
version '2.2.2+3'
repositories {
maven{
url 'https://maven.aliyun.com/repository/public/'
}
maven{
url 'https://maven.aliyun.com/nexus/content/repositories/google'
}
maven{
url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'
}
mavenLocal()
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.jsoup/jsoup
// compile group: 'org.jsoup', name: 'jsoup', version: '1.13.1'
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
//ext {
// ide.browser.jcef.headless.enabled true
//}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
// version = '2019.2'
// version = '2020.1'
// version = '2021.1'
version = '2022.1'
// version = '2023.1'
type = 'IU'
plugins = ["java"]
updateSinceUntilBuild = false
}
patchPluginXml {
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}