forked from xxxtai/ArthasHotSwap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (29 loc) · 801 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 "1.7.0"
}
group 'com.xxxtai.arthas'
version '2.0'
sourceCompatibility = JavaVersion.VERSION_11
repositories {
mavenCentral()
}
buildSearchableOptions { enabled = false }
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation 'org.apache.commons:commons-text:1.8'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'com.aliyun.oss:aliyun-sdk-oss:3.8.0'
implementation 'com.alibaba:fastjson:1.2.54'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set("2022.2.1")
type.set("IC") // Target IDE Platform
}
tasks {
patchPluginXml {
sinceBuild.set("213")
untilBuild.set("231.*")
}
}