-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
47 lines (39 loc) · 826 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
45
46
47
buildscript {
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenLocal()
mavenCentral()
}
}
plugins {
id("java")
id('org.jetbrains.intellij') version '1.10.1'
}
group 'io.github.newhoo.jvm'
version '1.0.7'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
}
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenLocal()
mavenCentral()
}
dependencies {
}
intellij {
// version.set('2018.1.7')
version.set('2024.1')
updateSinceUntilBuild.set(false)
downloadSources.set(true)
plugins.set(['java'])
sandboxDir.set("${rootProject.rootDir}/idea-sandbox")
}
tasks {
verifyPluginConfiguration {
enabled = false
}
buildSearchableOptions {
enabled = false
}
}