36 lines
620 B
Groovy
36 lines
620 B
Groovy
plugins {
|
|
id 'org.jetbrains.intellij' version '1.1'
|
|
id 'java'
|
|
}
|
|
|
|
group 'club.ximeng.ideaplugin'
|
|
version '1.0.0'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
}
|
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
intellij {
|
|
version = '2018.3'
|
|
}
|
|
patchPluginXml {
|
|
changeNotes = """
|
|
v1.0.<br>
|
|
<em>第一次发布</em>"""
|
|
}
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = "UTF-8"
|
|
}
|