1 Star 0 Fork 0

乖乖冰天雪地/groovy2kotlin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
zencd 提交于 2019-11-18 05:42 . +logback
apply plugin: 'groovy'
apply plugin: 'application'
mainClassName = 'gtk.Main'
jar {
baseName = 'groovy2kotlin'
version = '0.0.1'
}
repositories {
mavenLocal()
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile 'ch.qos.logback:logback-classic:1.1.2'
compile 'org.codehaus.groovy:groovy-all:2.5.8'
testCompile 'junit:junit:4.11'
testCompile 'org.junit.jupiter:junit-jupiter:5.4.0'
}
test {
useJUnitPlatform()
}
task uberjar(type: Jar, dependsOn: [':compileJava', ':compileGroovy']) {
from files(sourceSets.main.output.classesDirs)
from configurations.runtime.asFileTree.files.collect { zipTree(it) }
manifest {
attributes 'Main-Class': mainClassName
}
}
task exec(type: JavaExec, dependsOn: [':classes']) {
main = mainClassName
classpath = sourceSets.main.runtimeClasspath
//args = ["src", "dst"]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Groovy
1
https://gitee.com/btxd/groovy2kotlin.git
[email protected]:btxd/groovy2kotlin.git
btxd
groovy2kotlin
groovy2kotlin
master

搜索帮助