代码拉取完成,页面将自动刷新
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']
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。