Create new module with dependency on IDEA Git plugin

This commit is contained in:
Natalia Selezneva
2018-06-05 11:26:12 +03:00
parent dbb360555c
commit adfa7a2418
9 changed files with 29 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":idea"))
compileOnly(intellijDep())
compileOnly(intellijPluginDep("git4idea"))
}
sourceSets {
"main" { projectDefault() }
"test" { }
}
ideaPlugin()