优化gradle构建,添加注释信息

This commit is contained in:
makejava 2018-08-09 14:25:52 +08:00
parent f2244a7b00
commit 527e7bf1c5
3 changed files with 9 additions and 7 deletions

2
.gitignore vendored
View File

@ -6,5 +6,5 @@
##忽略输出文件夹
out/
target/
build/
idea-sandbox

View File

@ -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) {

View File

@ -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"/>