-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
47 lines (40 loc) · 980 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.restkit'
version "${pluginVersion}"
java {
sourceCompatibility = JavaVersion.VERSION_17
}
repositories {
maven { url 'https://maven.aliyun.com/repository/public/' }
mavenLocal()
mavenCentral()
}
dependencies {
implementation 'org.openjdk.nashorn:nashorn-core:15.4'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
}
intellij {
pluginName.set('RestfulBox')
version.set('2024.1')
// type.set("IU")
updateSinceUntilBuild.set(false)
downloadSources.set(true)
plugins.set(['java', 'Kotlin'])
sandboxDir.set("${rootProject.rootDir}/idea-sandbox")
}
tasks {
buildSearchableOptions {
enabled = false
}
}