xpipe/beacon/publish.gradle
Christopher Schnick cd93f934ff Prepare for publish
2022-01-10 07:10:44 +01:00

32 lines
1.1 KiB
Groovy

publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
name = 'X-Pipe beacon'
description = 'The socket-based implementation used for the communication with X-Pipe.'
url = 'https://github.com/xpipe-io/xpipe_java/beacon'
licenses {
license {
name = 'The MIT License (MIT)'
url = 'https://github.com/xpipe-io/xpipe_java/LICENSE.md'
}
}
developers {
developer {
id = 'crschnick'
name = 'Christopher Schnick'
email = 'crschnick@xpipe.io'
}
}
scm {
connection = 'scm:git:git://github.com/xpipe-io/xpipe_java.git'
developerConnection = 'scm:git:ssh://github.com/xpipe-io/xpipe_java.git'
url = 'https://github.com/xpipe-io/xpipe_java'
}
}
}
}
}