mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-25 21:42:07 +01:00
Add more pom metadata
This commit is contained in:
parent
312f2f7508
commit
e6d5385129
1 changed files with 13 additions and 1 deletions
14
build.gradle
14
build.gradle
|
@ -9,7 +9,7 @@ allprojects {
|
||||||
gitCommit = getGitCommit()
|
gitCommit = getGitCommit()
|
||||||
javadocAllDir = new File(buildDir, 'javadoc')
|
javadocAllDir = new File(buildDir, 'javadoc')
|
||||||
documentationDir = new File(projectDir, 'documentation')
|
documentationDir = new File(projectDir, 'documentation')
|
||||||
releasedocsDir = new File(buildDir, 'releasedocs')
|
releasedocsDir = new File(buildDir, 'releasedocs')
|
||||||
rootConfigDir = new File(rootDir, 'config')
|
rootConfigDir = new File(rootDir, 'config')
|
||||||
sonatypeCredentialsAvailable = project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')
|
sonatypeCredentialsAvailable = project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')
|
||||||
isReleaseVersion = !isSnapshot
|
isReleaseVersion = !isSnapshot
|
||||||
|
@ -143,6 +143,18 @@ subprojects {
|
||||||
packaging 'jar'
|
packaging 'jar'
|
||||||
url 'http://www.igniterealtime.org/projects/smack/'
|
url 'http://www.igniterealtime.org/projects/smack/'
|
||||||
|
|
||||||
|
issueManagement {
|
||||||
|
system 'JIRA'
|
||||||
|
url 'http://issues.igniterealtime.org/browse/SMACK'
|
||||||
|
}
|
||||||
|
|
||||||
|
distributionManagement {
|
||||||
|
snapshotRepository {
|
||||||
|
id 'smack.snapshot'
|
||||||
|
url project.sonatypeSnapshotUrl
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
scm {
|
scm {
|
||||||
url 'https://github.com/igniterealtime/Smack'
|
url 'https://github.com/igniterealtime/Smack'
|
||||||
connection 'scm:git:https://github.com/igniterealtime/Smack.git'
|
connection 'scm:git:https://github.com/igniterealtime/Smack.git'
|
||||||
|
|
Loading…
Reference in a new issue