xpipe/beacon/publish.gradle

42 lines
1.3 KiB
Groovy
Raw Normal View History

2022-01-02 12:51:06 +13:00
publishing {
publications {
mavenJava(MavenPublication) {
2022-09-02 11:41:51 +12:00
artifactId = project.archivesBaseName
2022-01-02 12:51:06 +13:00
from components.java
2022-09-02 11:41:51 +12:00
pom.withXml {
def pomNode = asNode()
pomNode.dependencies.'*'.findAll().each() {
it.scope*.value = 'compile'
}
}
2022-01-02 12:51:06 +13:00
pom {
2023-05-21 02:23:36 +12:00
name = 'XPipe Beacon'
description = 'The socket-based implementation used for the communication with the XPipe daemon.'
2023-01-27 15:34:46 +13:00
url = 'https://github.com/xpipe-io/xpipe/beacon'
2022-01-02 12:51:06 +13:00
licenses {
license {
2024-03-09 15:16:55 +13:00
name = 'Apache License 2.0'
2023-01-27 15:34:46 +13:00
url = 'https://github.com/xpipe-io/xpipe/LICENSE.md'
2022-01-02 12:51:06 +13:00
}
}
developers {
developer {
id = 'crschnick'
name = 'Christopher Schnick'
email = 'crschnick@xpipe.io'
}
}
scm {
2023-01-27 15:34:46 +13:00
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'
2022-01-02 12:51:06 +13:00
}
}
}
}
}