1 Star 0 Fork 0

luojoe/CodeGen

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
Hykes 提交于 2020-10-14 21:53 . 移除废弃方法
buildscript {
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "gradle.plugin.org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.4.21"
}
}
plugins {
id 'java'
id 'org.jetbrains.intellij' version '0.4.21'
}
group 'me.hehaiyang.codegen'
version '1.3.2'
sourceCompatibility = 1.8
targetCompatibility = 1.8
apply plugin: 'idea'
apply plugin: "org.jetbrains.intellij"
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'com.github.jsqlparser', name: 'jsqlparser', version: '1.3'
compileOnly fileTree(include: ['*.jar'], dir: ideaSDKlocalPath + '/Contents/plugins/DatabaseTools/lib')
}
intellij {
localPath ideaSDKlocalPath
pluginName 'CodeGen'
sandboxDirectory = project.rootDir.canonicalPath + "/.sandbox"
plugins = ['java']
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/joe_luo/CodeGen.git
git@gitee.com:joe_luo/CodeGen.git
joe_luo
CodeGen
CodeGen
master

搜索帮助