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

34 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'
}
}
}
}
}