同步操作将从 makejava/EasyCode 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
buildscript {repositories {mavenCentral()maven { url 'https://plugins.gradle.org/m2/' }maven { url 'https://oss.sonatype.org/content/repositories/releases/' }maven { url 'https://dl.bintray.com/jetbrains/intellij-plugin-service' }maven { url 'https://dl.bintray.com/jetbrains/intellij-third-party-dependencies/' }}dependencies {classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.6.0"}}//2.1 插件配置// 这两个插件是必备plugins {id 'java'id 'org.jetbrains.intellij' version '0.6.0'}group 'com.sjhy'version '1.2.4-RC4'sourceCompatibility = JavaVersion.VERSION_1_8targetCompatibility = JavaVersion.VERSION_1_8repositories {jcenter()mavenCentral()}intellij {// 插件名称pluginName 'EasyCode'// 沙箱目录位置,用于保存IDEA的设置,默认在build文件下面,防止clean,放在根目录下。sandboxDirectory = "${rootProject.rootDir}/idea-sandbox"// 开发环境运行时使用的版本version '2020.1.2'type 'IU'// 各种版本去这里找// https://www.jetbrains.com/intellij-repository/releases// 依赖的插件plugins = ['java', 'DatabaseTools', 'Velocity']//Disables updating since-build attribute in plugin.xmlupdateSinceUntilBuild falsedownloadSources = true}dependencies {compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.6'compileOnly 'org.projectlombok:lombok:1.18.12'annotationProcessor("org.projectlombok:lombok:1.18.12",)testCompile group: 'junit', name: 'junit', version: '4.12'testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'}tasks.withType(JavaCompile) {options.encoding = "UTF-8"}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。