Ai
2 Star 1 Fork 1

付呗开放平台/java-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 2.47 KB
一键复制 编辑 原始数据 按行查看 历史
group 'com.fshows.fubei'
version '1.0.2-SNAPSHOT'
// 所有项目
allprojects {
apply plugin: 'java'
// apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'idea'
apply plugin: 'com.github.johnrengelman.shadow'
configurations {
compile.exclude module: 'spring-boot-starter-logging'
compile.exclude module: 'logback-classic'
compile.exclude module: 'log4j-over-slf4j'
compile.exclude module: 'slf4j-log4j12'
compile.exclude module: 'log4j'
}
}
buildscript {
repositories {
maven { url "https://mirrors.huaweicloud.com/repository/maven/" }
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.3'
}
}
// 子项目
subprojects {
sourceCompatibility = 1.6
targetCompatibility = 1.6
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
// 打包源码
task packageSources(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts.archives packageSources
clean.delete += file("$projectDir/out")
ext {
}
repositories {
mavenLocal()
maven { url "https://mirrors.huaweicloud.com/repository/maven/" }
}
dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'org.powermock:powermock-core:1.6.5'
testImplementation 'org.powermock:powermock-api-mockito:1.6.5'
testImplementation 'org.powermock:powermock-module-junit4:1.6.5'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'commons-codec:commons-codec:1.10'
testImplementation 'org.apache.commons:commons-lang3:3.9'
implementation 'com.google.guava:guava:26.0-jre'
implementation 'com.alibaba:fastjson:1.2.31'
implementation 'com.annimon:stream:1.2.1'
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.2'
// 日志
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'org.slf4j:slf4j-simple:1.7.26'
shadow 'com.google.guava:guava:26.0-jre'
shadow 'com.alibaba:fastjson:1.2.31'
shadow 'com.annimon:stream:1.2.1'
shadow 'com.squareup.retrofit2:retrofit:2.6.0'
shadow 'com.squareup.okhttp3:logging-interceptor:3.14.2'
// 日志
shadow 'org.slf4j:slf4j-api:1.7.26'
shadow 'org.slf4j:slf4j-simple:1.7.26'
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/fubei-open/java-sdk.git
git@gitee.com:fubei-open/java-sdk.git
fubei-open
java-sdk
java-sdk
develop

搜索帮助