mirror of https://github.com/alibaba/p3c.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
519 B
Groovy
23 lines
519 B
Groovy
7 years ago
|
plugins {
|
||
|
id "org.jetbrains.intellij" version '0.2.17'
|
||
|
}
|
||
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'idea'
|
||
|
|
||
|
intellij {
|
||
|
version idea_version
|
||
|
plugins 'git4idea'
|
||
|
pluginName plugin_name
|
||
|
updateSinceUntilBuild false
|
||
|
sandboxDirectory "idea-sandbox"
|
||
|
}
|
||
|
|
||
|
version plugin_version
|
||
|
|
||
|
dependencies {
|
||
|
compile group: 'org.freemarker', name: 'freemarker', version: '2.3.25-incubating'
|
||
|
compile 'com.alibaba.p3c.idea:p3c-common:1.0.0'
|
||
|
compile group: 'org.javassist', name: 'javassist', version: '3.21.0-GA'
|
||
|
}
|
||
|
|