mirror of https://gitee.com/makejava/EasyCode.git
优化构建脚本
This commit is contained in:
parent
06d110fd60
commit
6bff81a84b
32
build.gradle
32
build.gradle
|
@ -6,8 +6,9 @@ buildscript {
|
|||
maven { url 'https://dl.bintray.com/jetbrains/intellij-plugin-service' }
|
||||
maven { url 'https://dl.bintray.com/jetbrains/intellij-third-party-dependencies/' }
|
||||
}
|
||||
// https://github.com/JetBrains/gradle-intellij-plugin/ 关注开发插件版本
|
||||
dependencies {
|
||||
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.6.0"
|
||||
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.6.5"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +16,7 @@ buildscript {
|
|||
// 这两个插件是必备
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'org.jetbrains.intellij' version '0.6.0'
|
||||
id 'org.jetbrains.intellij' version '0.6.5'
|
||||
}
|
||||
|
||||
|
||||
|
@ -30,6 +31,9 @@ repositories {
|
|||
mavenCentral()
|
||||
}
|
||||
|
||||
// http://www.jetbrains.org/intellij/sdk/docs/tutorials/build_system/prerequisites.html
|
||||
// https://plugins.jetbrains.com/docs/intellij/gradle-guide.html 官网gradle构建教程
|
||||
|
||||
intellij {
|
||||
// 插件名称
|
||||
pluginName 'EasyCode'
|
||||
|
@ -37,22 +41,38 @@ intellij {
|
|||
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
|
||||
// 开发环境运行时使用的版本
|
||||
version '2020.1.2'
|
||||
// 社区版
|
||||
// type 'IC'
|
||||
// 企业版
|
||||
type 'IU'
|
||||
// 各种版本去这里找
|
||||
// 各种IDEA版本去这里找
|
||||
// https://www.jetbrains.com/intellij-repository/releases
|
||||
// 依赖的插件
|
||||
plugins = ['java', 'DatabaseTools', 'Velocity']
|
||||
plugins = ['java', 'DatabaseTools']
|
||||
//Disables updating since-build attribute in plugin.xml
|
||||
updateSinceUntilBuild false
|
||||
downloadSources = true
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
|
||||
// jackson工具
|
||||
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.6'
|
||||
// guava工具
|
||||
// compile 'com.google.guava:guava:29.0-jre'
|
||||
// velocity支持
|
||||
// compile 'org.apache.velocity:velocity:1.7'
|
||||
// groovy支持
|
||||
// compile 'org.codehaus.groovy:groovy:3.0.2'
|
||||
// beetl支持
|
||||
// compile 'com.ibeetl:beetl:3.3.0.RELEASE'
|
||||
// freemarker支持
|
||||
// compile 'org.freemarker:freemarker:2.3.30'
|
||||
// lombok 支持
|
||||
compileOnly 'org.projectlombok:lombok:1.18.2'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
|
||||
// 测试用例
|
||||
testCompile 'junit:junit:4.12'
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
|
|
Loading…
Reference in New Issue