39 Star 163 Fork 61

罗瑶光 / 德塔数据分析ETL源代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
group 'ETL_Unicorn'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
// mavenCentral()
def REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public/'
all { ArtifactRepository repo ->
if (repo instanceof MavenArtifactRepository) {
def url = repo.url.toString()
if (url.startsWith('https://repo1.maven.org/maven2') || url.startsWith('https://jcenter.bintray.com/')) {
project.logger.lifecycle "Repository ${repo.url} replaced by $REPOSITORY_URL."
remove repo
}
}
}
maven {
url REPOSITORY_URL
}
}
dependencies {
compile 'commons-dbcp:commons-dbcp:1.4'
compile group: 'com.google.code.gson', name: 'gson', version: '2.2.4'
compile group: 'org.json', name: 'json', version: '20160810'
compile group: 'nz.ac.waikato.cms.weka', name: 'weka-stable', version: '3.8.0'
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20160810'
}
Java
1
https://gitee.com/DetaChina/Deta_Unicorn_ETL.git
git@gitee.com:DetaChina/Deta_Unicorn_ETL.git
DetaChina
Deta_Unicorn_ETL
德塔数据分析ETL源代码
master

搜索帮助