mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
33 lines
1.1 KiB
Groovy
33 lines
1.1 KiB
Groovy
publishing {
|
|
publications {
|
|
mavenJava(MavenPublication) {
|
|
artifactId = project.archivesBaseName
|
|
|
|
from components.java
|
|
|
|
pom {
|
|
name = 'XPipe Core'
|
|
description = 'Core classes used by all XPipe components.'
|
|
url = 'https://github.com/xpipe-io/xpipe/core'
|
|
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'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|