1 Star 0 Fork 5

alexzshl/Beetl-Support

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
爱菇狸 提交于 2019-09-05 17:54 +08:00 . 发布前的更正
buildscript {
repositories {
maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
maven {
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
mavenCentral()
}
}
plugins {
id "org.jetbrains.intellij" version "0.4.2"
}
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.8
repositories {
maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' }
maven{ url'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.ibeetl', name: 'beetl', version: '3.0.10.RELEASE'
}
intellij {
version '183.4284.148'
type 'IC'
// plugins = ['spring', 'springboot'] //'DatabaseTools'
pluginName 'Beetl-Support'
sandboxDirectory "${rootProject.rootDir}/idea-sandbox"
updateSinceUntilBuild false
downloadSources false
}
patchPluginXml {
changeNotes """
"""
}
sourceSets {
main {
java.srcDirs 'src/main/java', 'gen'
java.exclude '**/grammar/debugger/**'
resources.srcDirs 'src/main/resources'
}
test {
java.srcDir 'testData'
}
}
processResources {
from('src/main/java') {
include '**/*.png'
}
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
//将psiviewer插件复制到启动的idea中,等效于从本地安装插件
/*task copyTask(type: Copy) {
from 'PsiViewer.jar'
into 'idea-sandbox/plugins'
}*/
task copyTask(type: Copy) {
from 'action.script'
into 'idea-sandbox/system/plugins'
}
runIde.dependsOn copyTask
group 'com.ibeetl'
version '1.0-SNAPSHOT'
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/alexzshl/Beetl-Support.git
git@gitee.com:alexzshl/Beetl-Support.git
alexzshl
Beetl-Support
Beetl-Support
master

搜索帮助