mirror of https://gitee.com/makejava/EasyCode.git
优化gradle构建,添加注释信息
This commit is contained in:
parent
f2244a7b00
commit
527e7bf1c5
|
@ -6,5 +6,5 @@
|
|||
|
||||
##忽略输出文件夹
|
||||
out/
|
||||
target/
|
||||
build/
|
||||
idea-sandbox
|
||||
|
|
|
@ -29,19 +29,22 @@ repositories {
|
|||
|
||||
dependencies {
|
||||
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
|
||||
// compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'
|
||||
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||||
compileOnly "org.projectlombok:lombok:1.18.0"
|
||||
// compileClasspath fileTree(dir: 'lib', includes: ['*.jar'])
|
||||
}
|
||||
|
||||
intellij {
|
||||
// 插件名称
|
||||
pluginName 'EasyCode'
|
||||
// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。
|
||||
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
|
||||
// 开发环境运行时使用的版本
|
||||
version '2018.1.5'
|
||||
type 'IU'
|
||||
// 依赖的插件
|
||||
plugins = ['DatabaseTools']
|
||||
updateSinceUntilBuild false //Disables updating since-build attribute in plugin.xml
|
||||
//Disables updating since-build attribute in plugin.xml
|
||||
updateSinceUntilBuild false
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
|
|
|
@ -96,11 +96,10 @@
|
|||
<!-- uncomment to enable plugin in all products
|
||||
<depends>com.intellij.modules.lang</depends>
|
||||
-->
|
||||
<!--必须运行在企业版-->
|
||||
<depends>com.intellij.modules.ultimate</depends>
|
||||
<!--必须存在database插件-->
|
||||
<depends optional="true">com.intellij.database</depends>
|
||||
<depends>com.intellij.database</depends>
|
||||
|
||||
<!--扩展点-->
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<!-- Add your extensions here -->
|
||||
<applicationService serviceImplementation="com.sjhy.plugin.tool.ConfigInfo"/>
|
||||
|
|
Loading…
Reference in New Issue