1 Star 0 Fork 20

Admin/wx_sdk

forked from mrcode/wx_sdk 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.18 KB
一键复制 编辑 原始数据 按行查看 历史
allprojects {
group = 'cn.mrcode.wxsdk'
version = '0.1-SNAPSHOT'
}
/** 所有子项目通用配置 */
subprojects {
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.7
targetCompatibility = 1.7
//java编译的时候缺省状态下会因为中文字符而失败
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
repositories { //配置仓库
/* maven{
name '本地仓库'
url 'E:/SoftwareDevelop/Repository'
}*/
mavenLocal()
mavenCentral()
maven{ url "https://maven.repository.redhat.com/ga/"}
maven{url 'http://maven.oschina.net/content/groups/public/'}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
/** 日志 */
/* compile 'org.slf4j:slf4j-log4j12:1.7.13'
compile 'log4j:log4j:1.2.17'*/
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
compile group: 'ch.qos.logback', name: 'logback-core', version: '1.1.7'
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.7'
compile group: 'org.codehaus.janino', name: 'janino', version: '2.7.8'
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/lihjt_admin/wx_sdk.git
[email protected]:lihjt_admin/wx_sdk.git
lihjt_admin
wx_sdk
wx_sdk
master

搜索帮助