xpipe/beacon/publish.gradle

32 lines
1.1 KiB
Groovy
Raw Normal View History

2022-01-02 12:51:06 +13:00
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
pom {
2022-01-10 19:10:44 +13:00
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'
2022-01-02 12:51:06 +13:00
licenses {
license {
name = 'The MIT License (MIT)'
2022-01-10 19:10:44 +13:00
url = 'https://github.com/xpipe-io/xpipe_java/LICENSE.md'
2022-01-02 12:51:06 +13:00
}
}
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'
}
}
}
}
}