xpipe/beacon/publish.gradle
2024-03-09 02:16:55 +00:00

42 lines
1.3 KiB
Groovy

publishing {
publications {
mavenJava(MavenPublication) {
artifactId = project.archivesBaseName
from components.java
pom.withXml {
def pomNode = asNode()
pomNode.dependencies.'*'.findAll().each() {
it.scope*.value = 'compile'
}
}
pom {
name = 'XPipe Beacon'
description = 'The socket-based implementation used for the communication with the XPipe daemon.'
url = 'https://github.com/xpipe-io/xpipe/beacon'
licenses {
license {
name = 'Apache License 2.0'
url = 'https://github.com/xpipe-io/xpipe/LICENSE.md'
}
}
developers {
developer {
id = 'crschnick'
name = 'Christopher Schnick'
email = 'crschnick@xpipe.io'
}
}
scm {
connection = 'scm:git:git://github.com/xpipe-io/xpipe.git'
developerConnection = 'scm:git:ssh://github.com/xpipe-io/xpipe.git'
url = 'https://github.com/xpipe-io/xpipe'
}
}
}
}
}