xpipe-mirror/core/publish.gradle

34 lines
1.1 KiB
Groovy
Raw Normal View History

2022-01-01 23:51:06 +00:00
publishing {
publications {
mavenJava(MavenPublication) {
2022-09-01 23:41:51 +00:00
artifactId = project.archivesBaseName
2022-01-01 23:51:06 +00:00
from components.java
pom {
2023-05-20 14:23:36 +00:00
name = 'XPipe Core'
description = 'Core classes used by all XPipe components.'
2023-01-27 02:34:46 +00:00
url = 'https://github.com/xpipe-io/xpipe/core'
2022-01-01 23:51:06 +00:00
licenses {
license {
2024-03-09 02:16:55 +00:00
name = 'Apache License 2.0'
2023-01-27 02:34:46 +00:00
url = 'https://github.com/xpipe-io/xpipe/LICENSE.md'
2022-01-01 23:51:06 +00:00
}
}
developers {
developer {
id = 'crschnick'
name = 'Christopher Schnick'
email = 'crschnick@xpipe.io'
}
}
scm {
2023-01-27 02:34:46 +00: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-01 23:51:06 +00:00
}
}
}
}
}