26 Star 142 Fork 48

PasseRR/idea-passerr-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
PasseRR 提交于 2025-04-02 15:20 +08:00 . 修复edt问题
plugins {
id 'java'
id 'idea'
id 'org.jetbrains.intellij.platform' version '2.5.0'
}
group 'com.github.passerr'
version '3.0.4'
repositories {
maven {
url 'https://maven.aliyun.com/repository/gradle-plugin'
}
intellijPlatform {
defaultRepositories()
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
compileJava {
options.compilerArgs << '-Xlint:deprecation'
}
buildPlugin {
buildSearchableOptions.enabled = false
}
dependencies {
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.24'
implementation group: 'com.fifesoft', name: 'rsyntaxtextarea', version: '2.6.1'
// rtf导出
implementation('com.lowagie:itext:2.1.7') {
exclude group: 'bouncycastle'
}
implementation('com.lowagie:itext-rtf:2.1.7') {
exclude group: 'bouncycastle'
}
testImplementation 'junit:junit:4.13.2'
intellijPlatform {
// intellijIdeaCommunity
// datagrip
intellijIdeaUltimate '2024.3.1'
bundledPlugin 'com.intellij.java'
bundledPlugin 'com.intellij.database'
}
}
intellijPlatform {
pluginConfiguration {
ideaVersion {
sinceBuild = '241.*'
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/PasseRR/idea-passerr-plugin.git
git@gitee.com:PasseRR/idea-passerr-plugin.git
PasseRR
idea-passerr-plugin
idea-passerr-plugin
master

搜索帮助