mirror of
https://gitee.com/BDWare/common
synced 2025-01-10 01:44:16 +00:00
prune: update modules for mvn repository
This commit is contained in:
parent
6a7b355b18
commit
f746ccb7dc
94
build.gradle
94
build.gradle
@ -1,8 +1,19 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'java-library'
|
id 'java-library'
|
||||||
|
id 'maven-publish'
|
||||||
|
id 'signing'
|
||||||
|
id 'com.github.johnrengelman.shadow' version '4.0.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
shadowJar {
|
||||||
|
classifier = "jar"
|
||||||
|
dependencies {
|
||||||
|
include(dependency(fileTree(dir: 'lib', include: '*.jar')) )
|
||||||
|
// exclude(dependency('com.google.code.gson:gson:2.8.6'))
|
||||||
|
// relocate 'com.google.code.gson', 'irs.com.google.code.gson'
|
||||||
|
}
|
||||||
|
}
|
||||||
sourceSets {
|
sourceSets {
|
||||||
main {
|
main {
|
||||||
java {
|
java {
|
||||||
@ -24,11 +35,11 @@ sourceSets {
|
|||||||
sourceCompatibility = 1.8
|
sourceCompatibility = 1.8
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(":gmhelper")
|
api 'org.bdware.bdcontract:gmhelper:0.1.0'
|
||||||
api 'berkeleydb:je:3.2.76'
|
api 'berkeleydb:je:3.2.76'
|
||||||
// api 'com.fifesoft:rsyntaxtextarea:3.1.3'
|
// api 'com.fifesoft:rsyntaxtextarea:3.1.3'
|
||||||
api 'commons-io:commons-io:2.11.0'
|
api 'commons-io:commons-io:2.11.0'
|
||||||
api 'io.netty:netty-all:4.1.63.Final'
|
api 'io.netty:netty-all:4.1.72.Final'
|
||||||
api 'org.antlr:antlr4:4.9.2'
|
api 'org.antlr:antlr4:4.9.2'
|
||||||
api 'commons-codec:commons-codec:1.5'
|
api 'commons-codec:commons-codec:1.5'
|
||||||
api 'org.apache.logging.log4j:log4j-core:2.17.2'
|
api 'org.apache.logging.log4j:log4j-core:2.17.2'
|
||||||
@ -53,3 +64,82 @@ task copyJar(type: Copy) {
|
|||||||
into "./build/output/"
|
into "./build/output/"
|
||||||
rename { String fileName -> "yjs.jar" }
|
rename { String fileName -> "yjs.jar" }
|
||||||
}
|
}
|
||||||
|
//task classJar(type: Jar, dependsOn: classes) {
|
||||||
|
// classifier = "jar"
|
||||||
|
//}
|
||||||
|
task sourceJar(type: Jar, dependsOn: classes) {
|
||||||
|
archiveClassifier = "sources"
|
||||||
|
classifier = "sources"
|
||||||
|
from sourceSets.main.allSource
|
||||||
|
}
|
||||||
|
tasks.withType(Javadoc) {
|
||||||
|
options.addStringOption('Xdoclint:none', '-quiet')
|
||||||
|
}
|
||||||
|
|
||||||
|
task javadocJar(type: Jar, dependsOn: javadoc) {
|
||||||
|
archiveClassifier = 'javadoc'
|
||||||
|
classifier = "javadoc"
|
||||||
|
exclude {
|
||||||
|
details -> details.file.getAbsolutePath().contains("/gm/")
|
||||||
|
}
|
||||||
|
from javadoc.destinationDir
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
publishing {
|
||||||
|
publications {
|
||||||
|
mavenJava(MavenPublication) {
|
||||||
|
groupId project.group
|
||||||
|
artifactId "common"
|
||||||
|
version "${version}"
|
||||||
|
from components.java
|
||||||
|
artifact sourceJar
|
||||||
|
artifact javadocJar
|
||||||
|
artifact shadowJar
|
||||||
|
pom {
|
||||||
|
name = "bdware-common"
|
||||||
|
description = "common"
|
||||||
|
url = "https://gitee.com/BDWare/common"
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name = "Mulan PSL v2"
|
||||||
|
url = "http://license.coscl.org.cn/MulanPSL2"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id = "dataware"
|
||||||
|
email = "caihq@pku.edu.cn"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scm {
|
||||||
|
connection = "scm:git:https://gitee.com/BDWare/common.git"
|
||||||
|
developerConnection = "scm:git:https://gitee.com/BDWare/common.git"
|
||||||
|
url = "https://gitee.com/BDWare/common"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
repositories {
|
||||||
|
maven {
|
||||||
|
name 'bdwareSnapshotRepository'
|
||||||
|
url 'https://oss.sonatype.org/content/repositories/snapshots'
|
||||||
|
credentials {
|
||||||
|
username = "${NEXUS_USERNAME}"
|
||||||
|
password = "${NEXUS_PASSWORD}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
maven {
|
||||||
|
name 'bdwareRepository'
|
||||||
|
url 'https://oss.sonatype.org/service/local/staging/deploy/maven2'
|
||||||
|
credentials {
|
||||||
|
username = "${NEXUS_USERNAME}"
|
||||||
|
password = "${NEXUS_PASSWORD}"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
signing {
|
||||||
|
sign publishing.publications.mavenJava
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user