-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle
40 lines (33 loc) · 943 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
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
plugins {
id 'org.jetbrains.intellij' version '1.10.2'
}
group 'com.chuntung.plugin'
version "${version}"
sourceCompatibility = JavaVersion.VERSION_1_8
[compileJava,compileTestJava,javadoc]*.options*.encoding = 'UTF-8'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.kohsuke/github-api
implementation(files("libs/github-api-1.309-SNAPSHOT.jar"))
testImplementation group: 'junit', name: 'junit', version: '4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
pluginName = "Gist Snippet"
version = ideaVersion
plugins = ["org.jetbrains.plugins.github"]
sameSinceUntilBuild = Boolean.valueOf(isEAP)
patchPluginXml {
untilBuild = customUtilBuild
changeNotes = "${new File('changeNotes.txt').getText('UTF-8')}"
}
}