mirror of
https://github.com/chylex/IntelliJ-IdeaVim.git
synced 2024-11-23 11:42:45 +01:00
35 lines
603 B
Groovy
35 lines
603 B
Groovy
plugins {
|
|
id "org.jetbrains.intellij" version "0.0.39"
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
|
|
sourceCompatibility = javaVersion
|
|
targetCompatibility = javaVersion
|
|
|
|
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDir 'src'
|
|
resources.srcDir 'resources'
|
|
}
|
|
test {
|
|
java.srcDir 'test'
|
|
}
|
|
}
|
|
|
|
intellij {
|
|
version ideaVersion
|
|
pluginName 'IdeaVim'
|
|
updateSinceUntilBuild false
|
|
downloadSources Boolean.valueOf(downloadIdeaSources)
|
|
|
|
publish {
|
|
pluginId '164'
|
|
channel publishChannel
|
|
username publishUsername
|
|
password publishPassword
|
|
}
|
|
}
|