20 Star 61 Fork 19

Kuangcp/MythRedisClient

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 945 Bytes
一键复制 编辑 原始数据 按行查看 历史
Kuangcp 提交于 2018-11-22 22:23 +08:00 . merge
group 'com.github.kuangcp'
//version '1.0-SNAPSHOT'
apply from: 'dependencys.gradle'
allprojects {
apply plugin: 'java'
group 'com.github.kuangcp'
version = '1.0.0'
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
subprojects {
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
repositories {
mavenCentral()
}
configurations {
}
// 所有的依赖放在这里
dependencies {
compile(
libraries.'slf4j-api',
libraries.'logback-classic',
)
testCompile(
libraries['junit'],
)
}
}
project(':redis_core') {
dependencies {
compile(
libraries['jedis'],
)
testCompile(
libraries.'mockito-core',
libraries.'junit'
)
}
}
project(':redis_client') {
dependencies {
compile project(":redis_core")
compile(
libraries['openjfx-dialogs']
)
testCompile(
libraries['junit'],
)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gin9/MythRedisClient.git
git@gitee.com:gin9/MythRedisClient.git
gin9
MythRedisClient
MythRedisClient
master

搜索帮助