xpipe/core/publish.gradle

34 lines
1.1 KiB
Groovy
Raw Permalink 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
pom {
2023-05-21 02:23:36 +12:00
name = 'XPipe Core'
description = 'Core classes used by all XPipe components.'
2023-01-27 15:34:46 +13:00
url = 'https://github.com/xpipe-io/xpipe/core'
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
}
}
}
}
}