You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'org.jetbrains.intellij' version '0.4.21'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'io.zhile.research.intellij'
|
|
|
|
version '1.0.2'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/JetBrains/gradle-intellij-plugin/
|
|
|
|
intellij {
|
|
|
|
// localPath "${System.properties['user.home']}/Applications/IntelliJ IDEA.app"
|
|
|
|
// alternativeIdePath localPath
|
|
|
|
|
|
|
|
version "2020.1.2"
|
|
|
|
type "IU"
|
|
|
|
}
|
|
|
|
|
|
|
|
patchPluginXml {
|
|
|
|
changeNotes """
|
|
|
|
release v1.0.0"""
|
|
|
|
|
|
|
|
sinceBuild "162"
|
|
|
|
untilBuild null
|
|
|
|
}
|