1 Star 1 Fork 619

userqiao / EasyCode

forked from makejava / EasyCode 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
makejava 提交于 2020-09-23 11:51 . 添加1.2.4-RC3更新日志
buildscript {
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
url 'https://dl.bintray.com/jetbrains/intellij-plugin-service'
}
}
dependencies {
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.5.0-SNAPSHOT"
}
}
//plugins {
// id 'java'
// id 'org.jetbrains.intellij' version '0.3.5'
//}
//2.1 插件配置
// 这两个插件是必备
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'org.jetbrains.intellij'
group 'com.sjhy'
version '1.2.4-RC3'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'
testCompile group: 'junit', name: 'junit', version: '4.12'
annotationProcessor 'org.projectlombok:lombok:1.18.2'
compileOnly 'org.projectlombok:lombok:1.18.2'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
testCompileOnly 'org.projectlombok:lombok:1.18.2'
}
intellij {
// 插件名称
pluginName 'EasyCode'
// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。
sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"
// 开发环境运行时使用的版本
version '2020.1'
type 'IU'
// 各种版本去这里找
// https://www.jetbrains.com/intellij-repository/releases
// 依赖的插件
plugins = ['java', 'DatabaseTools', 'Velocity']
//Disables updating since-build attribute in plugin.xml
updateSinceUntilBuild false
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
Java
1
https://gitee.com/fj520/EasyCode.git
git@gitee.com:fj520/EasyCode.git
fj520
EasyCode
EasyCode
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891