Skip to content

Commit

Permalink
Add developer and SCM information to maven.
Browse files Browse the repository at this point in the history
  • Loading branch information
dweiss committed Sep 8, 2020
1 parent ecc6348 commit 0f52bcb
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions gradle/publishing/maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,30 @@ configure(rootProject) {
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}

organization {
name = "Carrot Search s.c."
url = "https://www.carrotsearch.com"
}

developers {
developer {
id = 'stanislaw.osinski'
name = 'Stanisław Osiński'
email = '[email protected]'
}
developer {
id = 'dawid.weiss'
name = 'Dawid Weiss'
email = '[email protected]'
}
}

scm {
connection = 'scm:git:[email protected]:carrotsearch/hppc.git'
developerConnection = 'scm:git:[email protected]:carrotsearch/hppc.git'
url = 'https://github.com/carrotsearch/hppc'
}
}

publications {
Expand Down

0 comments on commit 0f52bcb

Please sign in to comment.