4 Star 1 Fork 0

易企秀/ecmp-open-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.78 KB
一键复制 编辑 原始数据 按行查看 历史
will 提交于 2024-09-10 14:18 . change group
plugins {
id 'java'
id 'maven-publish'
}
group = "cn.eqxiu.open"
version = "1.0"
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.5'
implementation "com.fasterxml.jackson.core:jackson-core:2.13.5"
implementation "com.fasterxml.jackson.core:jackson-annotations:2.13.5"
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
//只处commons-codec只能使用 1.9版本,有一个 base64解码的问题
implementation 'commons-codec:commons-codec:1.9'
implementation 'org.bouncycastle:bcprov-jdk15to18:1.74'
testImplementation 'commons-logging:commons-logging:1.2'
testImplementation 'org.junit.platform:junit-platform-commons:1.8.1'
testImplementation 'org.junit.platform:junit-platform-launcher:1.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}
publishing {
publications {
mavenJava(MavenPublication) {
// 指定生成的POM文件
from components.java
// 可以添加额外的artifacts,比如sources和javadoc
// artifact sourceJar {
// classifier "sources"
// }
// artifact javadocJar {
// classifier "javadoc"
// }
}
}
// 配置仓库
repositories {
maven {
// 配置你的仓库URL
url = project.properties['publish.url']
credentials {
// 从环境变量中获取认证信息
username = project.properties['publish.username']
password = project.properties['publish.password']
}
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/eqxiu-ee/ecmp-open-sdk.git
git@gitee.com:eqxiu-ee/ecmp-open-sdk.git
eqxiu-ee
ecmp-open-sdk
ecmp-open-sdk
master

搜索帮助