-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (45 loc) · 1.12 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
plugins {
id 'org.jetbrains.intellij' version '1.3.0'
id 'org.jetbrains.grammarkit' version '2021.1.3'
id 'java'
}
group 'com.weibo'
version '1.0.1-SNAPSHOT'
repositories {
// mavenCentral()
maven {
url 'https://maven.aliyun.com/nexus/content/groups/public/'
}
maven {
url 'https://maven.aliyun.com/repository/gradle-plugin/'
}
maven {
url 'https://maven.aliyun.com/repository/jcenter/'
}
maven {
url 'https://maven.aliyun.com/repository/central/'
}
maven {
url 'https://maven.aliyun.com/repository/google/'
}
}
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.14.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
intellij {
version = '2021.2.1'
// not patch version info. use idea-version in plugin.xml
intellij.updateSinceUntilBuild = false
}
patchPluginXml {
changeNotes = """
init version<br>
"""
}
sourceSets.main.java.srcDirs 'src/main/gen'
buildSearchableOptions.enabled = false
test {
useJUnitPlatform()
}